tor-browser

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

outerhtml-01.html (540B)


      1 <!DOCTYPE html>
      2 <title>outerHTML: child of #document</title>
      3 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
      4 <link rel="help" href="http://html5.org/specs/dom-parsing.html#outerhtml">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <div id="log"></div>
      8 <script>
      9 test(function() {
     10  assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR", function() {
     11    document.documentElement.outerHTML = "<html><p>FAIL: Should have thrown an error<\/p><\/html>";
     12  })
     13 });
     14 </script>