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

Side by Side Diff: LayoutTests/fast/encoding/api/resources/shared.js

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 // Only these encodings are supported for encoding (vs. decoding) 1 // Only these encodings are supported for encoding (vs. decoding)
2 utf_encodings = ["utf-8", "utf-16le", "utf-16be"]; 2 utf_encodings = ["utf-8", "utf-16le", "utf-16be"];
3 3
4 // From non-normative encodings.json resource referenced by http://encoding.spec .whatwg.org/ 4 // From non-normative encodings.json resource referenced by http://encoding.spec .whatwg.org/
5 encodings_table = [ 5 encodings_table = [
6 { 6 {
7 "encodings": [ 7 "encodings": [
8 { 8 {
9 "labels": [ 9 "labels": [
10 "unicode-1-1-utf-8", 10 "unicode-1-1-utf-8",
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 "name": "utf-16le" 456 "name": "utf-16le"
457 }, 457 },
458 { 458 {
459 "labels": [ 459 "labels": [
460 "x-user-defined" 460 "x-user-defined"
461 ], 461 ],
462 "name": "x-user-defined" 462 "name": "x-user-defined"
463 } 463 }
464 ], 464 ],
465 "heading": "Legacy miscellaneous encodings" 465 "heading": "Legacy miscellaneous encodings"
466 },
467 {
468 "encodings": [
469 {
470 "labels": [
471 "base64",
472 ],
473 "name": "base64"
474 },
475 ],
476 "heading": "Base64 encodings"
466 } 477 }
467 ]; 478 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698