layout/reftests/bugs/459443-1.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

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>

mercurial