Index: LayoutTests/fast/dom/MicroData/propertiescollection-crash.html |
diff --git a/LayoutTests/fast/dom/MicroData/propertiescollection-crash.html b/LayoutTests/fast/dom/MicroData/propertiescollection-crash.html |
deleted file mode 100644 |
index 222e02580c704aa09ee0b8a4c0db8b9200afeea1..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/MicroData/propertiescollection-crash.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../js/resources/js-test-pre.js"></script> |
-</head> |
-<body> |
-<div id="testDiv" itemscope><div itemprop="bar"> </div></div> |
-<script> |
-description("This test is successful if it does not crash."); |
-var testDiv = document.getElementById("testDiv"); |
- |
-shouldBeTrue("testDiv.properties['bar'] == '[object PropertyNodeList]'"); |
-shouldBe("testDiv.properties['bar'].length", "1"); |
-</script> |
-<script src="../../js/resources/js-test-post.js"></script> |
-</body> |
-</html> |
- |