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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/script-tests/prototype-chain.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 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/dom/HTMLIsIndexElement/script-tests/prototype-chain.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/script-tests/prototype-chain.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/script-tests/prototype-chain.js
deleted file mode 100644
index 9b2fe58db17478409dba8100a65dfa56c01da2e7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/script-tests/prototype-chain.js
+++ /dev/null
@@ -1,15 +0,0 @@
-description("HTMLIsIndexElement should inherit directly from HTMLElement and be an HTMLUnknownElement");
-
-var isIndex = document.createElement("isindex");
-
-shouldBe("isIndex.__proto__", "HTMLUnknownElement.prototype");
-shouldBe("isIndex.__proto__.__proto__", "HTMLElement.prototype");
-
-shouldBeUndefined("isIndex.prompt");
-shouldBeUndefined("isIndex.form");
-
-shouldBeUndefined("isIndex.defaultValue");
-shouldBeUndefined("isIndex.disabled");
-shouldBeUndefined("isIndex.multiple");
-shouldBeUndefined("isIndex.alt");
-shouldBeUndefined("isIndex.accept");

Powered by Google App Engine
This is Rietveld 408576698