Index: LayoutTests/fast/dom/shadow/insertion-parent-shadow.html |
diff --git a/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html b/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html |
deleted file mode 100644 |
index 98275885552d3c1c77d63ffae4f7bbeb7ae07fe9..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../js/resources/js-test-pre.js"></script> |
-<script src="resources/shadow-dom.js"></script> |
-</head> |
-<body> |
-<script> |
-description("Tests for insertionParent with a shadow element."); |
- |
-document.body.appendChild( |
- createDOM('div', {}, |
- createDOM('div', {'id': 'host'}, |
- createShadowRoot( |
- createDOM('div', {'id': 'older-shadow-root-child'})), |
- createShadowRoot( |
- createDOM('shadow', {'id': 'shadow'}))))); |
- |
-document.body.offsetLeft; |
- |
-shouldBeEqualToString("getNodeInShadowTreeStack('host/older-shadow-root-child').webkitInsertionParent.id", "shadow"); |
-shouldBeNull("getNodeInShadowTreeStack('host//shadow').webkitInsertionParent"); |
-</script> |
-<script src="../../js/resources/js-test-post.js"></script> |
-</body> |
-</html> |