tor-browser

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

test_bug396637.js (242B)


      1 // Tests conversion of a single byte from UTF-16 to Unicode
      2 
      3 const inString = "A";
      4 const expectedString = "";
      5 const charset = "UTF-16BE";
      6 
      7 function run_test() {
      8  checkDecode(CreateScriptableConverter(), charset, inString, expectedString);
      9 }