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

Unified Diff: LayoutTests/fast/dom/MicroData/item-with-itemref-pointing-to-itself.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/item-with-itemref-pointing-to-itself.html
diff --git a/LayoutTests/fast/dom/MicroData/item-with-itemref-pointing-to-itself.html b/LayoutTests/fast/dom/MicroData/item-with-itemref-pointing-to-itself.html
deleted file mode 100644
index 78b8a2005611c84f3723e96b7fbf7672a547b44c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/item-with-itemref-pointing-to-itself.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-<script src="resources/microdata-common.js"></script>
-</head>
-<body>
-<script>
-description("Test to verify HTMLPropertiesCollection's behavior of Microdata item with itemprop attribute and itemref pointing to itself.");
-
-var item = createElement('div', {itemscope: 'itemscope', id: 'id1', itemref:'id1', itemprop:'foo'});
-
-function executeTest()
-{
- shouldBe("item.properties.length", "0");
- shouldBeNull("item.properties.item(0)");
- shouldBeUndefined("item.properties[0]");
- shouldBe("item.properties.namedItem('foo').length", "0");
- shouldBeNull("item.properties.namedItem('foo').item(0)");
- shouldBeUndefined("item.properties.namedItem('foo')[0]");
- shouldBe("item.properties.names.length", "0");
- shouldBeFalse("item.properties.names.contains('foo')");
- shouldBeNull("item.properties.names.item(0)");
- shouldBeUndefined("item.properties.names.length[0]");
-}
-
-debug("");
-debug("Item not attached to dom tree");
-executeTest();
-
-debug("");
-debug("Attached item to dom tree");
-document.body.appendChild(item);
-executeTest();
-</script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698