| OLD | NEW |
| 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 Loading... |
| 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 ]; |
| OLD | NEW |