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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js

Issue 2160843002: [DevTools] Introduce DOM capability. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/Source/devtools/front_end/sdk/TargetManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
index c7a4de86eddbd13756eb70532689f18571160a9d..ca96560e22f8d254eb50b16a0721e281b9222b92 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
@@ -212,7 +212,7 @@ WebInspector.TargetManager.prototype = {
if (target.hasJSCapability())
new WebInspector.DebuggerModel(target);
- if (target.hasBrowserCapability()) {
+ if (target.hasDOMCapability()) {
new WebInspector.DOMModel(target);
new WebInspector.CSSModel(target);
}

Powered by Google App Engine
This is Rietveld 408576698