1003441.xhtml (789B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?> 3 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom,0,1)"> 4 5 <splitter style="all: inherit;"> 6 <box/> 7 <box/> 8 <box/> 9 <box/> 10 <iframe id="a" src="aaa"/> 11 </splitter> 12 13 <script id="script" xmlns="http://www.w3.org/1999/xhtml"> 14 15 <![CDATA[//<![CDATA[ 16 17 var doc = document; 18 function boom(i) { 19 if (i>6) 20 return; 21 var x=doc.getElementsByTagName('*'); 22 if (x[i] && x[i+1]) { 23 var temp = x[i+1].getAttribute('style'); 24 x[i+1].setAttribute('style', x[i].getAttribute('style')); 25 x[i].setAttribute('style', temp); 26 } else { 27 return; 28 } 29 i++; 30 setTimeout(boom,50,i); 31 } 32 33 //]]> 34 35 </script> 36 37 </window>