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

Unified Diff: LayoutTests/fast/encoding/api/byte-order-marks.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
« no previous file with comments | « LayoutTests/fast/encoding/api/basics.html ('k') | LayoutTests/fast/encoding/api/encoding-labels.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/encoding/api/byte-order-marks.html
diff --git a/LayoutTests/fast/encoding/api/byte-order-marks.html b/LayoutTests/fast/encoding/api/byte-order-marks.html
deleted file mode 100644
index bf8516d793f9cbbff3e4a32839f708801bc9212b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/encoding/api/byte-order-marks.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<title>Encoding API: Byte-order marks</title>
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-<script>
-
-var testCases = [
- {
- encoding: 'utf-8',
- bom: [0xEF, 0xBB, 0xBF],
- bytes: [0x7A, 0xC2, 0xA2, 0xE6, 0xB0, 0xB4, 0xF0, 0x9D, 0x84, 0x9E, 0xF4, 0x8F, 0xBF, 0xBD]
- },
- {
- encoding: 'utf-16le',
- bom: [0xff, 0xfe],
- bytes: [0x7A, 0x00, 0xA2, 0x00, 0x34, 0x6C, 0x34, 0xD8, 0x1E, 0xDD, 0xFF, 0xDB, 0xFD, 0xDF]
- },
- {
- encoding: 'utf-16be',
- bom: [0xfe, 0xff],
- bytes: [0x00, 0x7A, 0x00, 0xA2, 0x6C, 0x34, 0xD8, 0x34, 0xDD, 0x1E, 0xDB, 0xFF, 0xDF, 0xFD]
- }
-];
-
-var string = 'z\xA2\u6C34\uD834\uDD1E\uDBFF\uDFFD'; // z, cent, CJK water, G-Clef, Private-use character
-
-testCases.forEach(function(t) {
- test(function() {
-
- var decoder = new TextDecoder(t.encoding);
- assert_equals(decoder.decode(new Uint8Array(t.bytes)), string,
- 'Sequence without BOM should decode successfully');
-
- assert_equals(decoder.decode(new Uint8Array(t.bom.concat(t.bytes))), string,
- 'Sequence with BOM should decode successfully (with no BOM present in output)');
-
- testCases.forEach(function(o) {
- if (o === t)
- return;
-
- assert_not_equals(decoder.decode(new Uint8Array(o.bom.concat(t.bytes))), string,
- 'Mismatching BOM should not be ignored - treated as garbage bytes.');
- });
-
- }, 'Byte-order marks: ' + t.encoding);
-});
-
-</script>
« no previous file with comments | « LayoutTests/fast/encoding/api/basics.html ('k') | LayoutTests/fast/encoding/api/encoding-labels.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698