summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding-detection/ja-EUC-JP.tentative.html
blob: 5929825f357e18bc90e6d2f4ba82a3f0d1f2cd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>ja EUC-JP</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_equals(document.characterSet, "EUC-JP", 'Expected EUC-JP');
    }, "Check detection result");
      done();
};
</script>