| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 <script src="resources/char-decoding-utils.js"></script> | 4 <script src="resources/char-decoding-utils.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 description("This tests decoding characters in various character sets."); | 9 description("This tests decoding characters in various character sets."); |
| 10 | 10 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 testDecode('ISO-10646-UCS-2', '%69%D8%D6%DE', 'U+D869/U+DED6'); | 99 testDecode('ISO-10646-UCS-2', '%69%D8%D6%DE', 'U+D869/U+DED6'); |
| 100 testDecode('UCS-2', '%69%D8%D6%DE', 'U+D869/U+DED6'); | 100 testDecode('UCS-2', '%69%D8%D6%DE', 'U+D869/U+DED6'); |
| 101 testDecode('Unicode', '%69%D8%D6%DE', 'U+D869/U+DED6'); | 101 testDecode('Unicode', '%69%D8%D6%DE', 'U+D869/U+DED6'); |
| 102 testDecode('csUnicode', '%69%D8%D6%DE', 'U+D869/U+DED6'); | 102 testDecode('csUnicode', '%69%D8%D6%DE', 'U+D869/U+DED6'); |
| 103 | 103 |
| 104 // UTF-16BE and variants. | 104 // UTF-16BE and variants. |
| 105 testDecode('UTF-16BE', '%D8%69%DE%D6', 'U+D869/U+DED6'); | 105 testDecode('UTF-16BE', '%D8%69%DE%D6', 'U+D869/U+DED6'); |
| 106 testDecode('unicodeFFFE', '%D8%69%DE%D6', 'U+D869/U+DED6'); | 106 testDecode('unicodeFFFE', '%D8%69%DE%D6', 'U+D869/U+DED6'); |
| 107 | 107 |
| 108 </script> | 108 </script> |
| 109 <script src="../js/resources/js-test-post.js"></script> | |
| 110 </body> | 109 </body> |
| 111 </html> | 110 </html> |
| OLD | NEW |