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

Unified Diff: LayoutTests/inspector/elements/styles/edit-value-with-trimmed-url.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-value-with-trimmed-url.html
diff --git a/LayoutTests/inspector/elements/styles/edit-value-with-trimmed-url.html b/LayoutTests/inspector/elements/styles/edit-value-with-trimmed-url.html
deleted file mode 100644
index f4dd0d4905e4a5b75e74636b00cb5ec8cadf9b4b..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/edit-value-with-trimmed-url.html
+++ /dev/null
@@ -1,35 +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.valueElement);
- InspectorTest.addResult("Editing 'background' value in Styles:");
- InspectorTest.addResult(treeElement.valueElement.textContent);
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that editing a CSS property value in the Styles pane restores the original, non-trimmed value text. <a href="https://bugs.webkit.org/show_bug.cgi?id=107936">Bug 107936</a>.
-</p>
-
-<div id="inspected" style="background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) repeat-y 50% top" />
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698