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

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

Issue 2058323002: Add ARIA panel to accessibility sidebar pane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dgozman comments 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/DOMModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js
index 01b031b2e11d4592fb9343c0b2b4529817ec9f26..7d1a3ded157b189de93e178a119415f1b2c0917a 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js
@@ -142,6 +142,9 @@ WebInspector.DOMNode.ShadowRootTypes = {
Closed: "closed"
}
+/** @typedef {{name: string, value: string, _node: WebInspector.DOMNode}} */
+WebInspector.DOMNode.Attribute;
+
WebInspector.DOMNode.prototype = {
/**
* @return {!WebInspector.DOMModel}
@@ -427,7 +430,7 @@ WebInspector.DOMNode.prototype = {
},
/**
- * @return {!Object}
+ * @return {!Array<!WebInspector.DOMNode.Attribute>}
dgozman 2016/07/19 18:13:12 Thanks!
aboxhall 2016/07/21 21:39:26 Sure! :D
*/
attributes: function()
{

Powered by Google App Engine
This is Rietveld 408576698