Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: LayoutTests/inspector/elements/styles/edit-name-with-trimmed-value.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/elements/styles/edit-name-with-trimmed-value.html
diff --git a/LayoutTests/inspector/elements/styles/edit-name-with-trimmed-value.html b/LayoutTests/inspector/elements/styles/edit-name-with-trimmed-value.html
deleted file mode 100644
index 57c3e7e2a586b83ea671eaace045a7b05649d7b4..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/edit-name-with-trimmed-value.html
+++ /dev/null
@@ -1,43 +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);
-
- function step1()
- {
- var treeElement = InspectorTest.getElementStylePropertyTreeItem("background");
- InspectorTest.addResult("Viewing 'background' value in Styles:");
- InspectorTest.addResult(treeElement.valueElement.textContent);
-
- treeElement.startEditing(treeElement.nameElement);
- treeElement.nameElement.textContent = "background-image";
- treeElement.nameElement.dispatchEvent(InspectorTest.createKeyEvent("Enter"));
- InspectorTest.waitForStyleApplied(step2);
- }
-
- function step2()
- {
- var treeElement = InspectorTest.getElementStylePropertyTreeItem("background-image");
- InspectorTest.addResult("Renamed 'background' to 'background-image' (edited value):");
- InspectorTest.addResult(treeElement.valueElement.textContent);
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that editing a CSS property name in the Styles pane retains its original, non-trimmed value text.
-</p>
-
-<div id="inspected" style="background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC)" />
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698