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

Unified Diff: LayoutTests/fast/encoding/api/surrogate-pairs-expected.txt

Issue 240283013: Convert Encoding API tests to W3C testharness.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/surrogate-pairs-expected.txt
diff --git a/LayoutTests/fast/encoding/api/surrogate-pairs-expected.txt b/LayoutTests/fast/encoding/api/surrogate-pairs-expected.txt
index 4e641982f5799cf297088307c957d19c7333b74d..f312ad4c4abf67c420072ec80bcab552aacdf206 100644
--- a/LayoutTests/fast/encoding/api/surrogate-pairs-expected.txt
+++ b/LayoutTests/fast/encoding/api/surrogate-pairs-expected.txt
@@ -1,27 +1,9 @@
-Test invalid UTF-16 surrogate pairs with UTF-8 encoding
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-encoded = new TextEncoder('utf-8').encode('abc123')
-PASS JSON.stringify([].slice.call(encoded)) is "[97,98,99,49,50,51]"
-
-encoded = new TextEncoder('utf-8').encode('\ud800')
-PASS JSON.stringify([].slice.call(encoded)) is "[239,191,189]"
-
-encoded = new TextEncoder('utf-8').encode('\udc00')
-PASS JSON.stringify([].slice.call(encoded)) is "[239,191,189]"
-
-encoded = new TextEncoder('utf-8').encode('abc\ud800123')
-PASS JSON.stringify([].slice.call(encoded)) is "[97,98,99,239,191,189,49,50,51]"
-
-encoded = new TextEncoder('utf-8').encode('abc\udc00123')
-PASS JSON.stringify([].slice.call(encoded)) is "[97,98,99,239,191,189,49,50,51]"
-
-encoded = new TextEncoder('utf-8').encode('\udc00\ud800')
-PASS JSON.stringify([].slice.call(encoded)) is "[239,191,189,239,191,189]"
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
+This is a testharness.js-based test.
+PASS Invalid surrogate pairs encoded into UTF-8: Sanity check
+PASS Invalid surrogate pairs encoded into UTF-8: Surrogate half (low)
+PASS Invalid surrogate pairs encoded into UTF-8: Surrogate half (high)
+PASS Invalid surrogate pairs encoded into UTF-8: Surrogate half (low), in a string
+PASS Invalid surrogate pairs encoded into UTF-8: Surrogate half (high), in a string
+PASS Invalid surrogate pairs encoded into UTF-8: Wrong order
+Harness: the test ran to completion.

Powered by Google App Engine
This is Rietveld 408576698