mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
37
layout/generic/crashtests/1003441.xul
Normal file
37
layout/generic/crashtests/1003441.xul
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
||||
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom,0,1)">
|
||||
|
||||
<splitter style="all: inherit;">
|
||||
<box/>
|
||||
<box/>
|
||||
<box/>
|
||||
<box/>
|
||||
<iframe id="a" src="aaa"/>
|
||||
</splitter>
|
||||
|
||||
<script id="script" xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<![CDATA[//<![CDATA[
|
||||
|
||||
var doc = document;
|
||||
function boom(i) {
|
||||
if (i>6)
|
||||
return;
|
||||
var x=doc.getElementsByTagName('*');
|
||||
if (x[i] && x[i+1]) {
|
||||
var temp = x[i+1].getAttribute('style');
|
||||
x[i+1].setAttribute('style', x[i].getAttribute('style'));
|
||||
x[i].setAttribute('style', temp);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
i++;
|
||||
setTimeout(boom,50,i);
|
||||
}
|
||||
|
||||
//]]>
|
||||
|
||||
</script>
|
||||
|
||||
</window>
|
||||
Loading…
Add table
Add a link
Reference in a new issue