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

Unified Diff: LayoutTests/fast/js/js-continue-break-restrictions-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/js-continue-break-restrictions-expected.txt
diff --git a/LayoutTests/fast/js/js-continue-break-restrictions-expected.txt b/LayoutTests/fast/js/js-continue-break-restrictions-expected.txt
deleted file mode 100644
index e9d46ec90a73e417115f836dc01cb64e2edcda6d..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/js-continue-break-restrictions-expected.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-Verify that invalid continue and break statements are handled correctly
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS L:{true;break L;false} is true
-PASS if (0) { L:{ break; } } threw exception SyntaxError: 'break' is only valid inside a switch or loop statement.
-PASS if (0) { L:{ continue L; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if (0) { L:{ continue; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if (0) { switch (1) { case 1: continue; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS A:L:{true;break L;false} is true
-PASS if (0) { A:L:{ break; } } threw exception SyntaxError: 'break' is only valid inside a switch or loop statement.
-PASS if (0) { A:L:{ continue L; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if (0) { A:L:{ continue; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS L:A:{true;break L;false} is true
-PASS if (0) { L:A:{ break; } } threw exception SyntaxError: 'break' is only valid inside a switch or loop statement.
-PASS if (0) { L:A:{ continue L; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if (0) { L:A:{ continue; } } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if(0){ L:for(;;) continue L; } is undefined.
-PASS if(0){ L:A:for(;;) continue L; } is undefined.
-PASS if(0){ A:L:for(;;) continue L; } is undefined.
-PASS if(0){ A:for(;;) L:continue L; } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if(0){ L:for(;;) A:continue L; } is undefined.
-PASS if(0){ L:do continue L; while(0); } is undefined.
-PASS if(0){ L:A:do continue L; while(0); } is undefined.
-PASS if(0){ A:L:do continue L; while(0);} is undefined.
-PASS if(0){ A:do L:continue L; while(0); } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if(0){ L:do A:continue L; while(0); } is undefined.
-PASS if(0){ L:while(0) continue L; } is undefined.
-PASS if(0){ L:A:while(0) continue L; } is undefined.
-PASS if(0){ A:L:while(0) continue L; } is undefined.
-PASS if(0){ A:while(0) L:continue L; } threw exception SyntaxError: 'continue' is only valid inside a loop statement.
-PASS if(0){ L:while(0) A:continue L; } is undefined.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/invalid-syntax-for-function-expected.txt ('k') | LayoutTests/fast/js/kde/StringObject-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698