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

Unified Diff: third_party/WebKit/LayoutTests/fast/js/kde/resources/const.js

Issue 1815833002: Rebaseline, fix, or remove various tests dealing with V8 behavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/kde/resources/const.js
diff --git a/third_party/WebKit/LayoutTests/fast/js/kde/resources/const.js b/third_party/WebKit/LayoutTests/fast/js/kde/resources/const.js
deleted file mode 100644
index ed3b422605c562a5eae7c512987483502a975959..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/js/kde/resources/const.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// constant definition
-const c = 11;
-shouldBe("c", "11");
-
-// attempt to redefine should have no effect
-c = 22;
-shouldBe("c", "11");
-
-const dummy = 0;
-for (var v = 0;;) {
- ++v;
- shouldBe("v", "1");
- break;
-}
-
-// ### check for forbidden redeclaration

Powered by Google App Engine
This is Rietveld 408576698