Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js |
| index d799945a5cb00e8a083b71e596d98f581ba0f995..cd80be00fa12244b1725e54004a570e47b786ed1 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js |
| @@ -46,8 +46,9 @@ WebInspector.AccessibilitySidebarView.prototype = { |
| this._axNodeSubPane.setAXNode(accessibilityNode); |
| } |
| var node = this.node(); |
| + this._ariaSubPane.setNode(node); |
|
lushnikov
2016/08/23 17:23:51
why this change?
aboxhall
2016/08/23 21:06:17
Fixes a bug where the ARIA sub-pane would get out
|
| return WebInspector.AccessibilityModel.fromTarget(node.target()).getAXNode(node.id) |
| - .then(accessibilityNodeCallback.bind(this)) |
| + .then(accessibilityNodeCallback.bind(this)); |
| }, |
| /** |