Index: LayoutTests/inspector/elements/delete-from-document.html |
diff --git a/LayoutTests/inspector/elements/delete-from-document.html b/LayoutTests/inspector/elements/delete-from-document.html |
deleted file mode 100644 |
index 9f7051ce3d3a00de7a97cdf1bc73d983463b037d..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/delete-from-document.html |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/elements-test.js"></script> |
-<script> |
- |
-function removeDoctype() |
-{ |
- document.removeChild(document.firstChild); |
-} |
- |
-function test() |
-{ |
- InspectorTest.expandElementsTree(step1); |
- |
- function step1() |
- { |
- InspectorTest.addResult("Before remove doctype"); |
- InspectorTest.dumpElementsTree(null, 1); |
- InspectorTest.evaluateInPage("removeDoctype()", step2); |
- } |
- |
- function step2() |
- { |
- InspectorTest.addResult("After remove doctype"); |
- InspectorTest.dumpElementsTree(null, 1); |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that removing child from the document is handled properly in the elements panel. |
-</p> |
- |
-</body> |
-</html> |