Chromium Code Reviews| 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 |