002.html (366B)
1 <!doctype html> 2 <title>document.open during parsing</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id="log"></div> 6 <script> 7 test(function() { 8 var log = document.getElementById("log"); 9 assert_equals(document.open(), document); 10 assert_equals(document.getElementById("log"), log); 11 }) 12 </script>