| Index: LayoutTests/fast/dom/MicroData/007.html
|
| diff --git a/LayoutTests/fast/dom/MicroData/007.html b/LayoutTests/fast/dom/MicroData/007.html
|
| deleted file mode 100644
|
| index 16b7a313c73ccb8ec13aa992a9222fa3bac0e0ed..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/MicroData/007.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../../js/resources/js-test-pre.js"></script>
|
| -</head>
|
| -<body>
|
| -<p>This tests that document.getItems NodeList must be in source tree order.</p>
|
| -
|
| -<div itemscope itemtype="http://example.com/foo" id="one"></div>
|
| -<div itemscope itemtype="http://example.com/bar" id="two"></div>
|
| -<div itemscope itemtype="http://example.com/foo" id="three">
|
| -<div itemscope itemtype="data:text/plain," id="four"></div>
|
| -</div>
|
| -<div itemscope id="five"></div>
|
| -<div id="console"></div>
|
| -<script>
|
| -var nodeList = document.getItems();
|
| -
|
| -shouldBe("nodeList[0].id", "'one'");
|
| -shouldBe("nodeList[1].id", "'two'");
|
| -shouldBe("nodeList[2].id", "'three'");
|
| -shouldBe("nodeList[3].id", "'four'");
|
| -</script>
|
| -<script src="../../js/resources/js-test-post.js"></script>
|
| -</body>
|
| -</html>
|
|
|