Index: third_party/WebKit/LayoutTests/fast/dom/Attr/parent-adopt-node.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Attr/parent-adopt-node.html b/third_party/WebKit/LayoutTests/fast/dom/Attr/parent-adopt-node.html |
deleted file mode 100644 |
index 5b57f6f6912b9071dbbbc95442886f1aa8cf6f9f..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/dom/Attr/parent-adopt-node.html |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<div id="target"></div> |
-<script> |
-var target = document.getElementById("target"); |
-var attr = target.attributes[0]; |
-var anotherDocument = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "", null); |
-anotherDocument.title = "Hello"; |
-anotherDocument.adoptNode(target); |
-shouldBe("attr.ownerDocument.title", "anotherDocument.title"); |
-</script> |
-</body> |
-</html> |