Index: LayoutTests/fast/dom/MicroData/properties-collection-nameditem-test.html |
diff --git a/LayoutTests/fast/dom/MicroData/properties-collection-nameditem-test.html b/LayoutTests/fast/dom/MicroData/properties-collection-nameditem-test.html |
deleted file mode 100644 |
index c9dae1a4eaa1cf535190409dce2e6f874ebf870d..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/MicroData/properties-collection-nameditem-test.html |
+++ /dev/null |
@@ -1,30 +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>Properties collection's namedItem property simple test.</p> |
-<div id="console"></div> |
-<script> |
-var element = createElement('div', {itemscope: 'itemscope'}, '<div itemprop="foo"></div>'); |
- |
-debug("<br>Test properties.namedItem(name)."); |
-shouldBeDefined("element.properties.namedItem('foo')"); |
-shouldBe("element.properties.namedItem('foo').length", '1'); |
-shouldBe("element.properties.namedItem('foo')[0]", 'element.firstChild'); |
- |
-debug("<br>Test properties[name]."); |
-shouldBeDefined("element.properties['foo']"); |
-shouldBe("element.properties['foo'].length", '1'); |
-shouldBe("element.properties['foo'][0]", 'element.firstChild'); |
- |
-debug("<br>Test properties[index]."); |
-shouldBeDefined("element.properties[0]"); |
-shouldBe("element.properties[0]", 'element.firstChild'); |
- |
-</script> |
-<script src="../../js/resources/js-test-post.js"></script> |
-</body> |
-</html> |