Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <body> |
michael@0 | 4 | <iframe id="foo"></iframe> |
michael@0 | 5 | <script type="text/javascript"> |
michael@0 | 6 | var n = document.getElementById('foo'); |
michael@0 | 7 | var f = n.contentWindow; |
michael@0 | 8 | f.document.open(); |
michael@0 | 9 | f.document.write(''); |
michael@0 | 10 | f.onload = function() { |
michael@0 | 11 | f.document.designMode = 'on'; |
michael@0 | 12 | setTimeout(function() { |
michael@0 | 13 | f.document.designMode='on'; |
michael@0 | 14 | f.location = 'data:text/html;charset=utf-8,<body>FAIL<script>document.body.innerHTML="PASS"<\/script>'; |
michael@0 | 15 | n.addEventListener("load", |
michael@0 | 16 | function() { document.documentElement.className = ''; }, |
michael@0 | 17 | false); |
michael@0 | 18 | }, 0); |
michael@0 | 19 | }; |
michael@0 | 20 | f.document.close(); |
michael@0 | 21 | </script> |
michael@0 | 22 | </body> |
michael@0 | 23 | </html> |