summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/syntax/parsing/quotes-in-meta.html
blob: 3d1eaf02a20c7dad80656f69adb26e24e1b1647f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<meta http-equiv="Content-Type" content='charset="windows-1251'>
<meta charset=windows-1250>
<title></title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<link rel=help href="https://html.spec.whatwg.org/#algorithm-for-extracting-a-character-encoding-from-a-meta-element">
<script>
test(function() {
    assert_equals(document.characterSet, "windows-1250");
});
</script>