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

Unified Diff: third_party/closure_compiler/externs/automation.js

Issue 2903973002: Rich editable text implementation using spannables (Closed)
Patch Set: Make boolean expressions explicit. Created 3 years, 6 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 | « chrome/renderer/resources/extensions/automation/automation_node.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/automation.js
diff --git a/third_party/closure_compiler/externs/automation.js b/third_party/closure_compiler/externs/automation.js
index 128d92feb3eaf68d198f9a6ba9be246ed995741b..6bcb195c65ea05b1e489cea17030957d412a2ed2 100644
--- a/third_party/closure_compiler/externs/automation.js
+++ b/third_party/closure_compiler/externs/automation.js
@@ -953,6 +953,34 @@ chrome.automation.AutomationNode.prototype.backgroundColor;
*/
chrome.automation.AutomationNode.prototype.colorValue;
+/**
+ * Indicates node text is bold.
+ * @type {boolean}
+ * @see https://developer.chrome.com/extensions/automation#type-bold
+ */
+chrome.automation.AutomationNode.prototype.bold;
+
+/**
+ * Indicates node text is italic.
+ * @type {boolean}
+ * @see https://developer.chrome.com/extensions/automation#type-italic
+ */
+chrome.automation.AutomationNode.prototype.italic;
+
+/**
+ * Indicates node text is underline.
+ * @type {boolean}
+ * @see https://developer.chrome.com/extensions/automation#type-underline
+ */
+chrome.automation.AutomationNode.prototype.underline;
+
+/**
+ * Indicates node text is line through.
+ * @type {boolean}
+ * @see https://developer.chrome.com/extensions/automation#type-lineThrough
+ */
+chrome.automation.AutomationNode.prototype.lineThrough;
+
/**
* Walking the tree.
* @type {!Array<!chrome.automation.AutomationNode>}
« no previous file with comments | « chrome/renderer/resources/extensions/automation/automation_node.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698