| Henri Sivonen | 08a2f73 | 2019-12-12 17:53:04 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <title>UTF-8</title> | ||||
| 3 | <script src=/resources/testharness.js></script> | ||||
| 4 | <script src=/resources/testharnessreport.js></script> | ||||
| 5 | <p>これは文字実験です。</p> | ||||
| 6 | <script> | ||||
| 7 | setup({explicit_done:true}); | ||||
| 8 | onload = function() { | ||||
| 9 | test(function() { | ||||
| 10 | assert_not_equals(document.characterSet.toUpperCase(), "UTF-8", 'Must not detect UTF-8'); | ||||
| 11 | }, "Check detection result"); | ||||
| 12 | done(); | ||||
| 13 | }; | ||||
| 14 | </script> | ||||