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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/SelectorAPI/script-tests/undefined-null-stringify.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/SelectorAPI/script-tests/undefined-null-stringify.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/SelectorAPI/script-tests/undefined-null-stringify.js b/third_party/WebKit/LayoutTests/fast/dom/SelectorAPI/script-tests/undefined-null-stringify.js
deleted file mode 100644
index 7aaa2a60cc9fa57495b7a3d146a5bbe8ec0b72b1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/SelectorAPI/script-tests/undefined-null-stringify.js
+++ /dev/null
@@ -1,21 +0,0 @@
-description(
-"This tests that the querySelector, querySelectorAll and matchesSelector (webkitMatchesSelector) correctly stringify null and undefined to \"null\" and \"undefined\"."
-);
-
-var root = document.createElement('div');
-var nullNode = document.createElement('null');
-root.appendChild(nullNode);
-var undefinedNode = document.createElement('undefined');
-root.appendChild(undefinedNode);
-document.body.appendChild(root);
-
-shouldBe("document.querySelector(null)", "nullNode");
-shouldBe("document.querySelector(undefined)", "undefinedNode");
-
-shouldBe("document.querySelectorAll(null).length", "1");
-shouldBe("document.querySelectorAll(null).item(0)", "nullNode");
-shouldBe("document.querySelectorAll(undefined).length", "1");
-shouldBe("document.querySelectorAll(undefined).item(0)", "undefinedNode");
-
-shouldBeTrue("nullNode.webkitMatchesSelector(null)");
-shouldBeTrue("undefinedNode.webkitMatchesSelector(undefined)");

Powered by Google App Engine
This is Rietveld 408576698