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