Home | History | Annotate | Download | only in encoding
      1 <html>
      2 <head>
      3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-32LE">
      4 </head>
      5 <body>
      6 <p>When dumped into a text file by the test controller, this needs to be viewed as UTF-8:</p>
      7 <p>This is an em dash,  , this is is a delta symbol, ", this is an uppercase pi, ", and this is a lowercase pi, .</p>
      8 <p id="result">Failure: script did not run</p>
      9 <script type="text/javascript">
     10   var result; 
     11   var ans = 'UTF-32LE';
     12   var enc = document.inputEncoding; 
     13   if (enc == ans) {
     14     result = 'Success : ' + enc;
     15   }
     16   else {
     17     result = 'Failure : this should look like ' + ans + ', but it is ' + enc;
     18   }
     19   document.getElementById("result").firstChild.nodeValue = result;
     20   if (window.layoutTestController) layoutTestController.dumpAsText();
     21 </script>
     22 </body>
     23 </html>
     24