Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Side by Side Diff: LayoutTests/fast/encoding/api/encoding-names-expected.txt

Issue 23455007: Encoding API: Use 'windows-1252' as name for 'us-ascii' 'iso-8859-1' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove control characters from expected.txt Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Test the Encoding API's use of encoding names 1 Test the Encoding API's use of encoding names
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Encoding names are case insensitive 6 Encoding names are case insensitive
7 PASS new TextDecoder('utf-8').encoding is "utf-8" 7 PASS new TextDecoder('utf-8').encoding is "utf-8"
8 PASS new TextDecoder('UTF-8').encoding is "utf-8" 8 PASS new TextDecoder('UTF-8').encoding is "utf-8"
9 PASS new TextDecoder('utf-16').encoding is "utf-16le" 9 PASS new TextDecoder('utf-16').encoding is "utf-16le"
10 PASS new TextDecoder('UTF-16').encoding is "utf-16le" 10 PASS new TextDecoder('UTF-16').encoding is "utf-16le"
11 PASS new TextDecoder('utf-16le').encoding is "utf-16le" 11 PASS new TextDecoder('utf-16le').encoding is "utf-16le"
12 PASS new TextDecoder('UTF-16LE').encoding is "utf-16le" 12 PASS new TextDecoder('UTF-16LE').encoding is "utf-16le"
13 PASS new TextDecoder('utf-16be').encoding is "utf-16be" 13 PASS new TextDecoder('utf-16be').encoding is "utf-16be"
14 PASS new TextDecoder('UTF-16BE').encoding is "utf-16be" 14 PASS new TextDecoder('UTF-16BE').encoding is "utf-16be"
15 FAIL new TextDecoder('ascii').encoding should be windows-1252. Was us-ascii. 15 PASS new TextDecoder('ascii').encoding is "windows-1252"
16 FAIL new TextDecoder('ASCII').encoding should be windows-1252. Was us-ascii. 16 PASS new TextDecoder('ASCII').encoding is "windows-1252"
17 FAIL new TextDecoder('iso-8859-1').encoding should be windows-1252. Was iso-8859 -1. 17 PASS new TextDecoder('iso-8859-1').encoding is "windows-1252"
18 FAIL new TextDecoder('ISO-8859-1').encoding should be windows-1252. Was iso-8859 -1. 18 PASS new TextDecoder('ISO-8859-1').encoding is "windows-1252"
19 PASS successfullyParsed is true 19 PASS successfullyParsed is true
20 20
21 TEST COMPLETE 21 TEST COMPLETE
22 22
OLDNEW
« no previous file with comments | « LayoutTests/fast/encoding/api/encoding-labels-expected.txt ('k') | LayoutTests/fast/encoding/api/latin-1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698