Skip to content

Commit

Permalink
Bug 1513178 [wpt PR 14455] - Encoding: make it clear sniffing for UTF…
Browse files Browse the repository at this point in the history
…-8 is not acceptable, a=testonly

Automatic update from web-platform-tests
Encoding: make it clear sniffing for UTF-8 is not acceptable

See whatwg/encoding#68 for background.

--

wpt-commits: 305ff11b190e7e2bec120a27083f4ba43d6d976e
wpt-pr: 14455

UltraBlame original commit: fc2cf66fe6fe7f880365058628d3a5b3f2c657fb
  • Loading branch information
marco-c committed Oct 3, 2019
1 parent 41f139a commit ae69b7d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions testing/web-platform/tests/encoding/sniffing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<title>No (UTF-8) sniffing allowed</title>
<div id=log></div>
<div id=content>€€ Hello World! €€</div>
<script>
test(() => {
assert_equals(document.getElementById("content").textContent, "\u00C2\u20AC\u00C2\u20AC Hello World! \u00C2\u20AC\u00C2\u20AC");
assert_equals(document.characterSet, "windows-1252");
});
</script>

0 comments on commit ae69b7d

Please sign in to comment.