-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1513178 [wpt PR 14455] - Encoding: make it clear sniffing for UTF…
…-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
Showing
1 changed file
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
< | ||
! | ||
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 | ||
> |