summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding-detection/vi-windows-1258.tentative.html
blob: 15f3b122f8d9461ea94f73810fd8fa834e354c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>vi windows-1258</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<p>��y la� m��t th�� nghi��m ma� ho�a ky� t��.</p>
<script>
setup({explicit_done:true});
onload = function() {
    test(function() {
        assert_equals(document.characterSet, "windows-1258", 'Expected windows-1258');
    }, "Check detection result");
      done();
};
</script>