PR-URL: https://github.com/nodejs/node/pull/33770 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
17 lines
388 B
HTML
17 lines
388 B
HTML
<!-- starts with a UTF-8 BOM -->
|
|
<!doctype html>
|
|
<meta charset="windows-1252">
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<title>BOM handling</title>
|
|
<div id=log></div>
|
|
<script>
|
|
|
|
test(
|
|
() => {
|
|
assert_equals(document.characterSet.toLowerCase(), "utf-8");
|
|
},
|
|
"document.characterSet should match the BOM"
|
|
);
|
|
|
|
</script>
|