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> |