1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/xul/tree/crashtests/391178-2.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?> 1.5 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait"> 1.6 + 1.7 +<tree id="a" style="position: fixed;"> 1.8 + <box style=" display: -moz-box; position: fixed;"> 1.9 + <treecol style=" display: -moz-box;"/> 1.10 + </box> 1.11 + <box style="position: fixed;"> 1.12 + <treechildren style="display: -moz-box; position: absolute;"/> 1.13 + </box> 1.14 +</tree> 1.15 + 1.16 +<script xmlns="http://www.w3.org/1999/xhtml"> 1.17 +function removestyles(){ 1.18 + document.getElementById('a').removeAttribute('style'); 1.19 + document.documentElement.removeAttribute("class"); 1.20 +} 1.21 +setTimeout(removestyles, 100); 1.22 +</script> 1.23 +</window>