Index: LayoutTests/fast/dom/MicroData/004.html |
diff --git a/LayoutTests/fast/dom/MicroData/004.html b/LayoutTests/fast/dom/MicroData/004.html |
deleted file mode 100644 |
index 2ef3771e68774780ad2c7029759f9994a517d90f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/MicroData/004.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../js/resources/js-test-pre.js"></script> |
-</head> |
-<body> |
-<p>This test ensures that document.getItems must be case sensitive.</p> |
-<div itemscope itemtype="http://example.com/foo" id="one"></div> |
-<div itemscope itemtype="http://example.com/BAR" id="two"></div> |
-<div id="console"></div> |
- |
-<script> |
-shouldBeTrue("document.getItems('http://example.com/Foo').length == 0"); |
-shouldBeTrue("document.getItems('http://example.com/foo').length == 1"); |
- |
-shouldBeTrue("document.getItems('http://example.com/BAR').length == 1"); |
-shouldBeTrue("document.getItems('http://example.com/bar').length == 0"); |
-</script> |
-<script src="../../js/resources/js-test-post.js"></script> |
-</body> |
-</html> |