document.open-03.html (594B)
1 <!DOCTYPE html> 2 <title>document.open and no singleton replacement</title> 3 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-open"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <div id="log"></div> 8 <script> 9 var t = async_test(); 10 function report(actual, expected, message) { 11 t.step(function() { 12 assert_equals(actual, expected, message); 13 }); 14 } 15 function done() { 16 t.done(); 17 } 18 </script> 19 <iframe src=document.open-03-frame.html></iframe>