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

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

Issue 2819183002: [DevTools] Consolidate overlay-related functionality in Overlay domain (Closed)
Patch Set: rebased bad merge Created 3 years, 8 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: third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
index 24432f9c0364e39ff83e0d14f00dba7c3f494a1b..f10e98eb97ecedc182d00caf50d709f21450064d 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html
@@ -7,9 +7,10 @@ function test()
{
var nodeInfo = {};
InspectorTest.eventHandler["DOM.setChildNodes"] = setChildNodes;
- InspectorTest.eventHandler["DOM.inspectNodeRequested"] = inspectNodeRequested;
+ InspectorTest.eventHandler["Overlay.inspectNodeRequested"] = inspectNodeRequested;
InspectorTest.sendCommand("DOM.enable", {});
- InspectorTest.sendCommand("DOM.setInspectMode", { "mode": "searchForNode", highlightConfig: {} }, onSetModeEnabled);
+ InspectorTest.sendCommand("Overlay.enable", {});
+ InspectorTest.sendCommand("Overlay.setInspectMode", { "mode": "searchForNode", highlightConfig: {} }, onSetModeEnabled);
function onSetModeEnabled(message)
{

Powered by Google App Engine
This is Rietveld 408576698