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

Unified Diff: LayoutTests/fast/encoding/api/basics.html

Issue 1196733003: Remove duplicate Encoding API tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/encoding/api/basics.html
diff --git a/LayoutTests/fast/encoding/api/basics.html b/LayoutTests/fast/encoding/api/basics.html
deleted file mode 100644
index dd33d30dc96f359f6db31272e01aedf709346a33..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/encoding/api/basics.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<title>Encoding API: Basics</title>
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-<script>
-
-test(function() {
-
- assert_true('TextEncoder' in window);
- assert_true('TextDecoder' in window);
-
- assert_true('encoding' in new TextEncoder);
- assert_true('encoding' in new TextDecoder);
- assert_equals(typeof (new TextEncoder).encoding, 'string');
- assert_equals(typeof (new TextDecoder).encoding, 'string');
-
- assert_true('encode' in new TextEncoder);
- assert_true('decode' in new TextDecoder);
-
- assert_equals(typeof (new TextEncoder).encode, 'function');
- assert_equals(typeof (new TextDecoder).decode, 'function');
-
- assert_equals((new TextEncoder).encoding, 'utf-8', 'default encoding is utf-8');
- assert_equals((new TextDecoder).encoding, 'utf-8', 'default encoding is utf-8');
-
- assert_array_equals(new TextEncoder().encode(), [], 'input default should be empty string')
- assert_array_equals(new TextEncoder().encode(undefined), [], 'input default should be empty string')
-
- function testEncodeDecodeSample(encoding, string, bytes) {
- var encoded = new TextEncoder(encoding).encode(string);
- assert_array_equals([].slice.call(encoded), bytes);
- assert_equals(new TextDecoder(encoding).decode(new Uint8Array(bytes)), string);
- assert_equals(new TextDecoder(encoding).decode(new Uint8Array(bytes).buffer), string);
- }
-
- // z (ASCII U+007A), cent (Latin-1 U+00A2), CJK water (BMP U+6C34),
- // G-Clef (non-BMP U+1D11E), PUA (BMP U+F8FF), PUA (non-BMP U+10FFFD)
- // byte-swapped BOM (non-character U+FFFE)
- var sample = 'z\xA2\u6C34\uD834\uDD1E\uF8FF\uDBFF\uDFFD\uFFFE';
-
- testEncodeDecodeSample(
- 'utf-8',
- sample,
- [0x7A, 0xC2, 0xA2, 0xE6, 0xB0, 0xB4, 0xF0, 0x9D, 0x84, 0x9E, 0xEF, 0xA3, 0xBF, 0xF4, 0x8F, 0xBF, 0xBD, 0xEF, 0xBF, 0xBE]
- );
- testEncodeDecodeSample(
- 'utf-16le',
- sample,
- [0x7A, 0x00, 0xA2, 0x00, 0x34, 0x6C, 0x34, 0xD8, 0x1E, 0xDD, 0xFF, 0xF8, 0xFF, 0xDB, 0xFD, 0xDF, 0xFE, 0xFF]
- );
- testEncodeDecodeSample(
- 'utf-16be',
- sample,
- [0x00, 0x7A, 0x00, 0xA2, 0x6C, 0x34, 0xD8, 0x34, 0xDD, 0x1E, 0xF8, 0xFF, 0xDB, 0xFF, 0xDF, 0xFD, 0xFF, 0xFE]
- );
- testEncodeDecodeSample(
- 'utf-16',
- sample,
- [0x7A, 0x00, 0xA2, 0x00, 0x34, 0x6C, 0x34, 0xD8, 0x1E, 0xDD, 0xFF, 0xF8, 0xFF, 0xDB, 0xFD, 0xDF, 0xFE, 0xFF]
- );
-}, 'Encoding API basics');
-
-</script>
« no previous file with comments | « LayoutTests/fast/encoding/api/ascii-supersets.html ('k') | LayoutTests/fast/encoding/api/byte-order-marks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698