Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html class="reftest-wait"> |
michael@0 | 2 | <head> |
michael@0 | 3 | |
michael@0 | 4 | <script type="text/javascript"> |
michael@0 | 5 | |
michael@0 | 6 | var i = 0; |
michael@0 | 7 | function mmf() |
michael@0 | 8 | { |
michael@0 | 9 | if (++i == 2) { |
michael@0 | 10 | document.body.innerHTML = "<marquee>"; |
michael@0 | 11 | document.documentElement.removeAttribute("class"); |
michael@0 | 12 | } |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | function init() |
michael@0 | 16 | { |
michael@0 | 17 | document.documentElement.offsetHeight; |
michael@0 | 18 | for (var j = 0; j < 2; ++j) { |
michael@0 | 19 | var iframe = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe"); |
michael@0 | 20 | iframe.addEventListener("load", mmf, false); |
michael@0 | 21 | document.body.appendChild(iframe); |
michael@0 | 22 | } |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | </script> |
michael@0 | 26 | </head> |
michael@0 | 27 | <body onload="setTimeout(init, 0);"></body> |
michael@0 | 28 | </html> |