Index: LayoutTests/fast/dom/MicroData/itemvalue-reflects-href-attr.html |
diff --git a/LayoutTests/fast/dom/MicroData/itemvalue-reflects-href-attr.html b/LayoutTests/fast/dom/MicroData/itemvalue-reflects-href-attr.html |
deleted file mode 100644 |
index a855fbaddc771e2dc887219e5c0812e456e8e6ff..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/MicroData/itemvalue-reflects-href-attr.html |
+++ /dev/null |
@@ -1,31 +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 itemValue must reflect the href attribute if the element is an a, area, or link element.</p> |
-<div id="console"></div> |
-<script> |
-var testElement; |
-function runTest(tagName) |
-{ |
- debug("Testing '" + tagName + "' element's behavior."); |
- testElement = createElement(tagName, {itemprop: 'foo', href: 'http://example.org/'}); |
- shouldBe("testElement.itemValue", "'http://example.org/'"); |
- testElement.href = 'http://example.net/'; |
- shouldBe("testElement.itemValue", "'http://example.net/'"); |
- testElement.itemValue = 'http://example.com/'; |
- shouldBe("testElement.href", "'http://example.com/'"); |
- debug(''); |
-} |
- |
-runTest('a'); |
-runTest('area'); |
-runTest('link'); |
- |
-</script> |
-<script src="../../js/resources/js-test-post.js"></script> |
-</body> |
-</html |