tor-browser

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

template-contentmethod-invalid.html (534B)


      1 <!DOCTYPE HTML>
      2 <meta charset="utf-8" />
      3 <title>HTML partial updates: invalid contentmethod</title>
      4 <link rel=help href="https://github.com/WICG/declarative-partial-updates">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 
      8 <template contentmethod="invalid">New content</template>
      9 <script>
     10 test(() => {
     11    assert_not_equals(document.querySelector("template[contentmethod=invalid]"), null);
     12 }, "<template contentmethod> with an invalid contentmethod should attach");
     13 </script>