tor-browser

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

meta-charset-double-quotes.html (468B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4      <!--<meta charset="ISO-8859-8">-->
      5      <meta charset  =
      6      "ISO-8859-5"/>
      7      <script src="/resources/testharness.js"></script>
      8      <script src="/resources/testharnessreport.js"></script>
      9  </head>
     10  <body>
     11    <script>
     12      "use strict";
     13      test(() => {
     14        assert_equals(document.characterSet, "ISO-8859-5");
     15      }, "document.characterSet must be determined by meta charset");
     16    </script>
     17  </body>
     18 </html>