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

Unified Diff: third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt

Issue 2318933007: Fix layout test for redeclaration of arguments. (Closed)
Patch Set: Created 4 years, 3 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: third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt b/third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt
index d074a92b5542c10b8dfe20cd89834a593ed3bf6d..81777513642176b8a4a23675387339e99d834d61 100644
--- a/third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/js/mozilla/strict/13.1-expected.txt
@@ -116,10 +116,10 @@ PASS Function("'use strict'; function f(arguments){}") threw exception of type S
PASS !!Function("function f(arguments){}") is true
PASS true === true
PASS Function("'use strict'; function f([arguments]){}") threw exception of type SyntaxError.
-PASS Function("function f([arguments]){}") threw exception of type SyntaxError.
+PASS !!Function("function f([arguments]){}") is true
PASS true === true
PASS Function("'use strict'; function f({x:arguments}){}") threw exception of type SyntaxError.
-PASS Function("function f({x:arguments}){}") threw exception of type SyntaxError.
+PASS !!Function("function f({x:arguments}){}") is true
PASS true === true
PASS Function("'use strict'; function arguments(){}") threw exception of type SyntaxError.
PASS !!Function("function arguments(){}") is true
@@ -140,10 +140,10 @@ PASS Function("'use strict'; (function f(arguments){})") threw exception of type
PASS !!Function("(function f(arguments){})") is true
PASS true === true
PASS Function("'use strict'; (function f([arguments]){})") threw exception of type SyntaxError.
-PASS Function("(function f([arguments]){})") threw exception of type SyntaxError.
+PASS !!Function("(function f([arguments]){})") is true
PASS true === true
PASS Function("'use strict'; (function f({x:arguments}){})") threw exception of type SyntaxError.
-PASS Function("(function f({x:arguments}){})") threw exception of type SyntaxError.
+PASS !!Function("(function f({x:arguments}){})") is true
PASS true === true
PASS Function("'use strict'; (function arguments(){})") threw exception of type SyntaxError.
PASS !!Function("(function arguments(){})") is true
@@ -176,10 +176,10 @@ PASS Function("'use strict'; ({set x(arguments){}})") threw exception of type Sy
PASS !!Function("({set x(arguments){}})") is true
PASS true === true
PASS Function("'use strict'; ({set x([arguments]){}})") threw exception of type SyntaxError.
-PASS Function("({set x([arguments]){}})") threw exception of type SyntaxError.
+PASS !!Function("({set x([arguments]){}})") is true
PASS true === true
PASS Function("'use strict'; ({set x({x:arguments}){}})") threw exception of type SyntaxError.
-PASS Function("({set x({x:arguments}){}})") threw exception of type SyntaxError.
+PASS !!Function("({set x({x:arguments}){}})") is true
PASS true === true
PASS Function("'use strict'; ({set x(arguments){\"use strict\";}})") threw exception of type SyntaxError.
PASS Function("({set x(arguments){\"use strict\";}})") threw exception of type SyntaxError.

Powered by Google App Engine
This is Rietveld 408576698