Index: LayoutTests/inspector/elements/styles/paste-property.html |
diff --git a/LayoutTests/inspector/elements/styles/paste-property.html b/LayoutTests/inspector/elements/styles/paste-property.html |
deleted file mode 100644 |
index 1904fb8a01c572ed13b80f199d4168f952d8eb02..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/paste-property.html |
+++ /dev/null |
@@ -1,80 +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", pasteFirstProperty); |
- |
- function pasteFirstProperty() |
- { |
- InspectorTest.addResult("Before pasting:"); |
- InspectorTest.dumpSelectedElementStyles(true); |
- var section = InspectorTest.inlineStyleSection(); |
- |
- var treeElement = section.addNewBlankProperty(0); |
- pasteProperty(treeElement, "margin-left: 1px", pasteTwoProperties); |
- } |
- |
- function pasteTwoProperties() |
- { |
- InspectorTest.addResult("After pasting 'margin-left: 1px':"); |
- InspectorTest.dumpSelectedElementStyles(true); |
- |
- var treeElement = InspectorTest.inlineStyleSection().addNewBlankProperty(2); |
- pasteProperty(treeElement, "margin-top: 1px; color: red;", pasteOverExistingProperty); |
- } |
- |
- function pasteOverExistingProperty() |
- { |
- InspectorTest.addResult("After pasting 'margin-top: 1px; color: red;':"); |
- InspectorTest.dumpSelectedElementStyles(true); |
- |
- var treeElement = InspectorTest.getElementStylePropertyTreeItem("margin-top"); |
- pasteProperty(treeElement, "foo: bar; moo: zoo", dumpAndComplete); |
- } |
- |
- function dumpAndComplete() |
- { |
- InspectorTest.addResult("After pasting 'foo: bar; moo: zoo' over 'margin-top':"); |
- InspectorTest.dumpSelectedElementStyles(true); |
- |
- InspectorTest.completeTest(); |
- } |
- |
- function pasteProperty(treeElement, propertyText, callback) |
- { |
- treeElement.nameElement.textContent = propertyText; |
- treeElement.startEditing(); |
- |
- document.execCommand("SelectAll"); |
- document.execCommand("Copy"); |
- InspectorTest.waitForStyleApplied(reloadStyles.bind(this, callback)); |
- document.execCommand("Paste"); |
- } |
- |
- function reloadStyles(callback) { |
- InspectorTest.selectNodeAndWaitForStyles("other", otherCallback); |
- |
- function otherCallback() |
- { |
- InspectorTest.selectNodeAndWaitForStyles("inspected", callback); |
- } |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that splitting properties when pasting works. |
-</p> |
- |
-<div id="inspected" style="font-size: 12px">Text</div> |
-<div id="other"></div> |
- |
-</body> |
-</html> |