Chromium Code Reviews

Unified Diff: LayoutTests/fast/dom/MicroData/itemprop-reflected-by-itemProp-property.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.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html
diff --git a/LayoutTests/fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html b/LayoutTests/fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html
deleted file mode 100644
index 7bb5c839ca620ab1a33457fa79721f87314a7592..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-<script src="resources/microdata-common.js"></script>
-</head>
-<body>
-<p>This test ensures that the itemprop attribute must be reflected by the .itemProp property.</p>
-<div id="console"></div>
-<script>
-var element = createElement('div', {itemprop: 'http://example.com/foo'});
-
-shouldBeDefined("element.itemProp");
-shouldBe("element.itemProp.toString()", "'http://example.com/foo'");
-
-element.removeAttribute('itemProp');
-shouldBe("element.itemProp.toString()", "''");
-
-</script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine