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

Unified Diff: LayoutTests/fast/dom/Element/attrisid-extra01.html

Issue 124643003: Remove Attr.isId and Attr.ownerElement. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bump unused use counter slot number due to conflict. Created 6 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: LayoutTests/fast/dom/Element/attrisid-extra01.html
diff --git a/LayoutTests/fast/dom/Element/attrisid-extra01.html b/LayoutTests/fast/dom/Element/attrisid-extra01.html
deleted file mode 100644
index d69d362875a94539961b67e19816cecd5238d6a8..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/Element/attrisid-extra01.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-<body>
-
-<script>
-description("Test Attr.isId where Attr is created without element.");
-
-var attr = document.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
-shouldBeFalse('attr.isId');
-
-var attr = document.createAttributeNS("","id");
-shouldBeTrue('attr.isId');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698