tor-browser

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

pl-ISO-8859-2-late.tentative.html (470B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>pl ISO-8859-2 late</title>
      4 <script src=/resources/testharness.js></script>
      5 <script src=/resources/testharnessreport.js></script>
      6 <script>
      7 setup({explicit_done:true});
      8 window.onmessage = function(e) {
      9    test(function() {
     10        assert_equals(e.data, "ISO-8859-2", 'Expected ISO-8859-2');
     11    }, "Check detection result");
     12    w.close();
     13    done();
     14 };
     15 var w = window.open("support/pl-ISO-8859-2-late.sub.html");
     16 </script>