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

Unified Diff: LayoutTests/fast/dom/MicroData/names-item-out-of-range-index.html

Issue 14028014: Remove MicroData implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also delete all the tests Created 7 years, 8 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/MicroData/names-item-out-of-range-index.html
diff --git a/LayoutTests/fast/dom/MicroData/names-item-out-of-range-index.html b/LayoutTests/fast/dom/MicroData/names-item-out-of-range-index.html
deleted file mode 100644
index 28a4fac50b4cecaa34ba45031f2f8229e11e414b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/names-item-out-of-range-index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-</head>
-<body>
-<div itemscope id="mydiv"></div>
-<script>
-description("This test verifies properties.names.item(index) behavior for out-of-range index.");
-
-debug("Test itemType[index]");
-var element = document.getElementById("mydiv");
-shouldBeNull("element.properties.names.item(0)");
-shouldBeNull("element.properties.names.item(-1)");
-element.innerHTML = "<div itemprop='foo'></div";
-shouldBe("element.properties.names.item(0)", "'foo'");
-shouldBeNull("element.properties.names.item(1)");
-shouldBeNull("element.properties.names.item(-1)");
-</script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698