Index: LayoutTests/inspector/elements/styles/styles-change-node-while-editing.html |
diff --git a/LayoutTests/inspector/elements/styles/styles-change-node-while-editing.html b/LayoutTests/inspector/elements/styles/styles-change-node-while-editing.html |
deleted file mode 100644 |
index b71d25190cf1f2f2c4ed35a36ed2cf4ebebcd417..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/styles-change-node-while-editing.html |
+++ /dev/null |
@@ -1,50 +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.selectNodeAndWaitForStyles("inspected", step1); |
- |
- var treeElement; |
- var section; |
- |
- function step1() |
- { |
- InspectorTest.dumpSelectedElementStyles(true, true, true); |
- treeElement = InspectorTest.getElementStylePropertyTreeItem("color"); |
- |
- treeElement.startEditing(); |
- treeElement.nameElement.textContent = "background"; |
- |
- InspectorTest.selectNodeAndWaitForStyles("other", step2); |
- } |
- |
- function step2() |
- { |
- InspectorTest.dumpSelectedElementStyles(true, true, true); |
- InspectorTest.selectNodeAndWaitForStyles("inspected", step3); |
- } |
- |
- function step3() |
- { |
- InspectorTest.dumpSelectedElementStyles(true, true, true); |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that changing selected node while editing style does update styles sidebar. |
-</p> |
- |
-<div id="inspected" style="color: red">Text</div> |
-<div id="other" style="color: blue"></div> |
- |
-</body> |
-</html> |