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

Unified Diff: LayoutTests/fast/js/function-toString-object-literals-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/js/function-toString-object-literals-expected.txt
diff --git a/LayoutTests/fast/js/function-toString-object-literals-expected.txt b/LayoutTests/fast/js/function-toString-object-literals-expected.txt
deleted file mode 100644
index cc09a5d4d5b002fceec518a7af650886e1296ac9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/function-toString-object-literals-expected.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-This test checks that object literals are serialized properly. It's needed in part because JavaScriptCore converts numeric property names to string and back.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS compileAndSerialize('a = { 1: null }') is 'a = { 1: null }'
-PASS compileAndSerialize('a = { 0: null }') is 'a = { 0: null }'
-PASS compileAndSerialize('a = { 1.0: null }') is 'a = { 1.0: null }'
-PASS compileAndSerialize('a = { "1.0": null }') is 'a = { "1.0": null }'
-PASS compileAndSerialize('a = { 1e-500: null }') is 'a = { 1e-500: null }'
-PASS compileAndSerialize('a = { 1e-300: null }') is 'a = { 1e-300: null }'
-PASS compileAndSerialize('a = { 1e300: null }') is 'a = { 1e300: null }'
-PASS compileAndSerialize('a = { 1e500: null }') is 'a = { 1e500: null }'
-PASS compileAndSerialize('a = { NaN: null }') is 'a = { NaN: null }'
-PASS compileAndSerialize('a = { Infinity: null }') is 'a = { Infinity: null }'
-PASS compileAndSerialize('a = { "1": null }') is 'a = { "1": null }'
-PASS compileAndSerialize('a = { "1hi": null }') is 'a = { "1hi": null }'
-PASS compileAndSerialize('a = { "\'": null }') is 'a = { "\'": null }'
-PASS compileAndSerialize('a = { "\\"": null }') is 'a = { "\\"": null }'
-PASS compileAndSerialize('a = { get x() { } }') is 'a = { get x() { } }'
-PASS compileAndSerialize('a = { set x(y) { } }') is 'a = { set x(y) { } }'
-PASS compileAndSerialize('a = { --1: null }') threw exception SyntaxError: Unexpected token '--'.
-PASS compileAndSerialize('a = { -NaN: null }') threw exception SyntaxError: Unexpected token '-'.
-PASS compileAndSerialize('a = { -0: null }') threw exception SyntaxError: Unexpected token '-'.
-PASS compileAndSerialize('a = { -0.0: null }') threw exception SyntaxError: Unexpected token '-'.
-PASS compileAndSerialize('a = { -Infinity: null }') threw exception SyntaxError: Unexpected token '-'.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698