Index: LayoutTests/inspector/elements/edit-trimmed-attribute-value.html |
diff --git a/LayoutTests/inspector/elements/edit-trimmed-attribute-value.html b/LayoutTests/inspector/elements/edit-trimmed-attribute-value.html |
deleted file mode 100644 |
index fdc81b9bbd4e49dcd0b91a7a2c6c4e0851f56a69..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/edit-trimmed-attribute-value.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/elements-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- InspectorTest.selectNodeWithId("inspected", execute); |
- |
- function execute() |
- { |
- var treeElement = InspectorTest.firstElementsTreeOutline().findTreeElement(InspectorTest.expandedNodeWithId("inspected")); |
- var textElement = treeElement.listItemElement.getElementsByClassName("webkit-html-attribute")[0]; |
- InspectorTest.addResult("Original textContent"); |
- InspectorTest.addResult(treeElement.title.textContent); |
- |
- treeElement._startEditingTarget(textElement); |
- InspectorTest.addResult("textContent when editing 'href'"); |
- InspectorTest.addResult(treeElement.title.textContent); |
- |
- textElement.dispatchEvent(InspectorTest.createKeyEvent("U+0009")); |
- InspectorTest.addResult("textContent after moving to 'id'"); |
- InspectorTest.addResult(treeElement.title.textContent); |
- |
- textElement = treeElement.listItemElement.getElementsByClassName("webkit-html-attribute")[1]; |
- textElement.dispatchEvent(InspectorTest.createKeyEvent("U+001B")); |
- InspectorTest.addResult("textContent after canceling the edit (equal to the original one)"); |
- InspectorTest.addResult(treeElement.title.textContent); |
- |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that user can mutate DOM by means of elements panel. |
-</p> |
- |
-<div> |
- <a href="data:text/plain;,12345678901234567890123456789012345678901234567890123456789012345678901234567890/123456789012345678901234567890123456789012345678901234567890" id="inspected">Anchor</a> |
-</div> |
-</body> |
-</html> |