blob: 405e123808dfa46a95c680ceffd8df1528a776cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<title>ja ISO-2022-JP</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<p>$B$3$l$OJ8;z<B83$G$9!#(B</p>
<script>
setup({explicit_done:true});
onload = function() {
test(function() {
assert_equals(document.characterSet, "ISO-2022-JP", 'Expected ISO-2022-JP');
}, "Check detection result");
done();
};
</script>
|