| 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>}
|
|
|