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

Unified Diff: third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js

Issue 2778283002: [DevTools] Do not inherit SDK.DOMNode from SDK.SDKObject (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js b/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
index 7d7b8ea897b0b4fdec2cc6d9e7bf3054fd3c94a8..4820650ed20d15903c48dbc692321967abe2b88e 100644
--- a/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
+++ b/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
@@ -21,7 +21,7 @@ Accessibility.ARIAAttributesPane = class extends Accessibility.AccessibilitySubP
this._treeOutline.removeChildren();
if (!this.node())
return;
- var target = this.node().target();
+ var target = this.node().domModel().target();
var attributes = node.attributes();
for (var i = 0; i < attributes.length; ++i) {
var attribute = attributes[i];
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698