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

Unified Diff: third_party/WebKit/LayoutTests/fast/js/unscopeable.html

Issue 2341673004: [Binding] Replace 'Unscopeable' with 'Unscopable' (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/unscopeable.html
diff --git a/third_party/WebKit/LayoutTests/fast/js/unscopeable.html b/third_party/WebKit/LayoutTests/fast/js/unscopeable.html
deleted file mode 100644
index 5ca9b2cf7b5d0dd972b51cb63268bfb1c47c585b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/js/unscopeable.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<script>
-description('Test [Unscopeable] attributes and methods.');
-
-shouldBeTrue('"unscopeableAttribute" in internals');
-shouldBeTrue('"unscopeableMethod" in internals');
-
-shouldBe('internals.unscopeableAttribute', '"unscopeableAttribute"');
-shouldBe('internals.unscopeableMethod()', '"unscopeableMethod"');
-
-var unscopeableAttribute = 'variable';
-var unscopeableMethod = 'variable';
-
-with (internals) {
- shouldBe('unscopeableAttribute', '"variable"');
- shouldBe('unscopeableMethod', '"variable"');
-}
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698