blob: dac67b1e934359ea95449b93039995ba6e666d75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
|