| 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 d740036c7e4d72f06de3663c4b2e5a092dfcce0a..6a85e60ae71d7549ecb0f272787ecfc464c5beb3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
|
| @@ -46,14 +46,14 @@ WebInspector.ARIAAttributesPane.prototype = {
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.AXNodePropertyTreeElement}
|
| + * @extends {TreeElement}
|
| * @param {!WebInspector.ARIAAttributesPane} parentPane
|
| * @param {!WebInspector.DOMNode.Attribute} attribute
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.ARIAAttributesTreeElement = function(parentPane, attribute, target)
|
| {
|
| - WebInspector.AXNodePropertyTreeElement.call(this, target);
|
| + TreeElement.call(this, "");
|
|
|
| this._parentPane = parentPane;
|
| this._attribute = attribute;
|
| @@ -80,7 +80,6 @@ WebInspector.ARIAAttributesTreeElement.prototype = {
|
| },
|
|
|
| /**
|
| - * @override
|
| * @param {string} name
|
| */
|
| appendNameElement: function(name)
|
| @@ -192,7 +191,7 @@ WebInspector.ARIAAttributesTreeElement.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.AXNodePropertyTreeElement.prototype
|
| + __proto__: TreeElement.prototype
|
| };
|
|
|
| /**
|
|
|