servo/tests/wpt/web-platform-tests/encoding-detection/it-windows-1252.tentative.html

14 lines
430 B
HTML

<!doctype html>
<title>it windows-1252</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<p>Questo è un test di codifica dei caratteri.</p>
<script>
setup({explicit_done:true});
onload = function() {
test(function() {
assert_equals(document.characterSet, "windows-1252", 'Expected windows-1252');
}, "Check detection result");
done();
};
</script>