tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

016.html (553B)


      1 <!doctype html>
      2 <title>document.write</title>
      3 <script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
      4 <script>
      5 test(
      6 function() {
      7  document.write("<i>Filler Text");
      8  document.write("</i><b>Filler Text");
      9  assert_equals(document.body.firstChild.localName, "i");
     10  assert_equals(document.body.firstChild.textContent, "Filler Text");
     11  assert_equals(document.body.childNodes[1].localName, "b");
     12  assert_equals(document.body.childNodes[1].textContent, "Filler Text");
     13 }
     14 );
     15 </script>
     16 <div id="log"></div>