-1:000000000000 | 0:96a982b956ea |
---|---|
1 <html class="reftest-wait"> | |
2 <head> | |
3 | |
4 <script> | |
5 | |
6 function boom() | |
7 { | |
8 document.getElementById("frameset").appendChild(document.createTextNode("")); | |
9 document.getElementById("frameset").setAttribute("rows", "100%, *"); | |
10 document.documentElement.removeAttribute("class"); | |
11 } | |
12 | |
13 </script> | |
14 | |
15 </head> | |
16 | |
17 <frameset id="frameset" cols="130, *" onload="setTimeout(boom, 30);"> | |
18 <frame src="data:text/html,foo"> | |
19 <frame src="data:text/html,bar"> | |
20 </frameset> | |
21 | |
22 </html> |