summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding-detection/utf-8.html
blob: a2a5982ef480bd0fd2b8944c39a077b476c49588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>UTF-8</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<p>これは文字実験です。</p>
<script>
setup({explicit_done:true});
onload = function() {
    test(function() {
        assert_not_equals(document.characterSet.toUpperCase(), "UTF-8", 'Must not detect UTF-8');
    }, "Check detection result");
      done();
};
</script>