Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /encoding-detection/ko-EUC-KR.tentative.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>ko EUC-KR</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, "EUC-KR", 'Expected EUC-KR');
}, "Check detection result");
done();
};
</script>