Index: LayoutTests/inspector/elements/styles/css-live-edit.html |
diff --git a/LayoutTests/inspector/elements/styles/css-live-edit.html b/LayoutTests/inspector/elements/styles/css-live-edit.html |
deleted file mode 100644 |
index 4e6d144930b2eeb7bb71dc4451599efcddb42c60..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/css-live-edit.html |
+++ /dev/null |
@@ -1,46 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../../http/tests/inspector/elements-test.js"></script> |
-<script src="../../../http/tests/inspector/live-edit-test.js"></script> |
-<script src="../../../http/tests/inspector/debugger-test.js"></script> |
-<link rel="stylesheet" href="resources/css-live-edit.css"> |
-<div id=foo></div> |
-<script> |
- |
-function test() |
-{ |
- InspectorTest.runTestSuite([ |
- function testLiveEdit(next) |
- { |
- InspectorTest.showScriptSource("css-live-edit.css", didShowResource); |
- |
- function didShowResource(sourceFrame) |
- { |
- InspectorTest.addSniffer(WebInspector.CSSStyleModel.prototype, "_fireStyleSheetChanged", didEditResource); |
- InspectorTest.replaceInSource(sourceFrame, "font-size: 12px;", "font-size: 20px;"); |
- } |
- |
- function didEditResource() |
- { |
- InspectorTest.selectNodeAndWaitForStylesWithComputed("foo", didSelectElement); |
- } |
- |
- function didSelectElement() |
- { |
- InspectorTest.dumpSelectedElementStyles(false, true); |
- next(); |
- } |
- } |
- ]); |
-}; |
- |
-</script> |
- |
-</head> |
- |
-<body onload="runTest()"> |
-<p>Tests that styles are updated when live-editing css resource.</p> |
- |
-</body> |
-</html> |