Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <html class="reftest-wait"> |
michael@0 | 2 | <head> |
michael@0 | 3 | <script> |
michael@0 | 4 | |
michael@0 | 5 | function rM(n) |
michael@0 | 6 | { |
michael@0 | 7 | n.parentNode.removeChild(n); |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | function boom() |
michael@0 | 11 | { |
michael@0 | 12 | rM(document.getElementById("f1")); |
michael@0 | 13 | rM(document.getElementById("f2")); |
michael@0 | 14 | document.documentElement.removeAttribute("class"); |
michael@0 | 15 | } |
michael@0 | 16 | </script> |
michael@0 | 17 | </head> |
michael@0 | 18 | |
michael@0 | 19 | <frameset rows="170,*" onload="setTimeout(boom, 30);"> |
michael@0 | 20 | <frame src="data:text/html,frame1" id="f1"> |
michael@0 | 21 | <frame src="data:text/html,frame2" id="f2"> |
michael@0 | 22 | </frameset> |
michael@0 | 23 | |
michael@0 | 24 | </html> |