trisquel-icecat/icecat/testing/web-platform/tests/encoding-detection/zh-Big5.tentative.html

14 lines
385 B
HTML

<!doctype html>
<title>zh Big5</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, "Big5", 'Expected Big5');
}, "Check detection result");
done();
};
</script>