tor-browser

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

041.html (400B)


      1 <!doctype html>
      2 <title>document.write entity</title>
      3 <script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
      4 <script>
      5 var t = test(function() {
      6  var s = "<body><span>&notin;abc";
      7  for (var i=0; i<s.length; i++) {
      8    document.write(s[i]);
      9  }
     10  assert_equals(document.body.childNodes[0].textContent, "\u2209abc");
     11 });
     12 </script>
     13 <div id="log"></div>