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

Unified Diff: LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html

Issue 1310273006: Devtools: convert pair of booleans in setInspectModeEnabled into enum parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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-protocol/dom/dom-setInspectModeEnabled.html
diff --git a/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html b/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
index 2fdfb1f466b0ddd634be592d2707bb95d067d8de..e8d7f64f0707a22a875b93098c0ed2e3ba64cd7c 100644
--- a/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
+++ b/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
@@ -9,7 +9,7 @@ function test()
InspectorTest.eventHandler["DOM.setChildNodes"] = setChildNodes;
InspectorTest.eventHandler["DOM.inspectNodeRequested"] = inspectNodeRequested;
InspectorTest.sendCommand("DOM.enable", {});
- InspectorTest.sendCommand("DOM.setInspectModeEnabled", { "enabled": true, highlightConfig: {} }, onSetModeEnabled);
+ InspectorTest.sendCommand("DOM.setInspectMode", { "mode": "searchForNormal", highlightConfig: {} }, onSetModeEnabled);
function onSetModeEnabled(message)
{

Powered by Google App Engine
This is Rietveld 408576698