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

Unified Diff: LayoutTests/inspector/elements/switch-panels-while-editing-as-html.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/switch-panels-while-editing-as-html.html
diff --git a/LayoutTests/inspector/elements/switch-panels-while-editing-as-html.html b/LayoutTests/inspector/elements/switch-panels-while-editing-as-html.html
deleted file mode 100644
index 44981af0a038a8131eac80ec50fe3e43341372a8..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/switch-panels-while-editing-as-html.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/elements-test.js"></script>
-<script src="edit-dom-test.js"></script>
-<script>
-
-function test()
-{
- InspectorTest.runTestSuite([
- function testSetUp(next)
- {
- InspectorTest.expandElementsTree(next);
- },
-
- function selectNode(next)
- {
- InspectorTest.selectNodeWithId("inspected", onNodeSelected)
-
- function onNodeSelected(node)
- {
- var treeOutline = InspectorTest.firstElementsTreeOutline();
- var treeElement = treeOutline.findTreeElement(node);
- treeElement.toggleEditAsHTML();
- InspectorTest.addSniffer(WebInspector.ElementsTreeOutline.prototype, "setMultilineEditing", next);
- }
- },
-
- function switchPanels(next)
- {
- WebInspector.inspectorView.showPanel("sources")
- .then(next)
- .catch(onError);
-
- function onError(error)
- {
- InspectorTest.addResult("FAILURE: exception caught while switching panels.");
- InspectorTest.completeTest();
- }
- }
- ]);
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Verifies inspector doesn't break when switching panels while editing as HTML. crbug.com/485457
-</p>
-
-<div>
- <div id="inspected">Inspected Node</div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698