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

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

Issue 143943017: Added Base64 support in TextEncoder and TextDecoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
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 6
7 name = "utf-8" 7 name = "utf-8"
8 PASS new TextDecoder("unicode-1-1-utf-8").encoding is "utf-8" 8 PASS new TextDecoder("unicode-1-1-utf-8").encoding is "utf-8"
9 PASS new TextDecoder("utf-8").encoding is "utf-8" 9 PASS new TextDecoder("utf-8").encoding is "utf-8"
10 PASS new TextDecoder("utf8").encoding is "utf-8" 10 PASS new TextDecoder("utf8").encoding is "utf-8"
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 296
297 name = "utf-16be" 297 name = "utf-16be"
298 PASS new TextDecoder("utf-16be").encoding is "utf-16be" 298 PASS new TextDecoder("utf-16be").encoding is "utf-16be"
299 299
300 name = "utf-16le" 300 name = "utf-16le"
301 PASS new TextDecoder("utf-16").encoding is "utf-16le" 301 PASS new TextDecoder("utf-16").encoding is "utf-16le"
302 PASS new TextDecoder("utf-16le").encoding is "utf-16le" 302 PASS new TextDecoder("utf-16le").encoding is "utf-16le"
303 303
304 name = "x-user-defined" 304 name = "x-user-defined"
305 PASS new TextDecoder("x-user-defined").encoding is "x-user-defined" 305 PASS new TextDecoder("x-user-defined").encoding is "x-user-defined"
306
307 name = "base64"
308 PASS new TextDecoder("base64").encoding is "base64"
306 PASS successfullyParsed is true 309 PASS successfullyParsed is true
307 310
308 TEST COMPLETE 311 TEST COMPLETE
309 312
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698