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

Unified Diff: third_party/WebKit/LayoutTests/inspector/agents-enable-disable.html

Issue 1866213002: [DevTools] Move inspect from Inspector to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@inspector-connection
Patch Set: inspectRequested Created 4 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/agents-enable-disable.html
diff --git a/third_party/WebKit/LayoutTests/inspector/agents-enable-disable.html b/third_party/WebKit/LayoutTests/inspector/agents-enable-disable.html
index 2b69627cfc29f57db0f873193773a5033aa01570..c121d0c2d5aee763a0c46795c5005d7be7148245 100644
--- a/third_party/WebKit/LayoutTests/inspector/agents-enable-disable.html
+++ b/third_party/WebKit/LayoutTests/inspector/agents-enable-disable.html
@@ -25,7 +25,7 @@ function test()
targets.forEach(function(target) {
var agentNames = Object.keys(target._agentsMap).filter(function(agentName) {
var agent = target._agentsMap[agentName];
- return agent["enable"] && agent["disable"] && agentName !== "ServiceWorker" && agentName !== "Security"; // async wrt others.
+ return agent["enable"] && agent["disable"] && agentName !== "ServiceWorker" && agentName !== "Security" && agentName !== "Inspector"; // async wrt others.
}).sort();
function disableAgent(agentName)

Powered by Google App Engine
This is Rietveld 408576698