tor-browser

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

iso2022jp-decode.html (1330B)


      1 <!DOCTYPE html>
      2 <html lang="en-GB">
      3 <head>
      4 <meta charset="utf-8"/>
      5 <title>ISO 2022-JP decoding</title>
      6 <meta name="timeout" content="long">
      7 <meta name="variant" content="?1-1000">
      8 <meta name="variant" content="?1001-2000">
      9 <meta name="variant" content="?2001-3000">
     10 <meta name="variant" content="?3001-4000">
     11 <meta name="variant" content="?4001-5000">
     12 <meta name="variant" content="?5001-6000">
     13 <meta name="variant" content="?6001-7000">
     14 <meta name="variant" content="?7001-last">
     15 <script src="/resources/testharness.js"></script>
     16 <script src="/resources/testharnessreport.js"></script>
     17 <script src="/common/subset-tests.js"></script>
     18 <link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org">
     19 <link rel="help" href="https://encoding.spec.whatwg.org/#iso-2022-jp">
     20 <meta name="assert" content="The browser decodes all characters as expected from a file generated by encoding all pointers in the iso-2022-jp encoding per the encoder steps in the specification.">
     21 <style>
     22 iframe { display:none }
     23 </style>
     24 <script src="jis0208_index.js"></script>
     25 <script src="iso2022jp-decoder.js"></script>
     26 <script src="../../resources/decode-common.js"></script>
     27 </head>
     28 
     29 <body onload="showNodes(iso2022jpDecoder);">
     30 
     31 <iframe src="iso2022jp_chars.html" name="scriptWindow" id="scrwin"></iframe>
     32 
     33 <div id="log"></div>
     34 
     35 </body>
     36 </html>