| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file was generated by: | 5 // This file was generated by: |
| 6 // tools/json_schema_compiler/compiler.py. | 6 // tools/json_schema_compiler/compiler.py. |
| 7 // NOTE: The format of types has changed. 'FooType' is now | 7 // NOTE: The format of types has changed. 'FooType' is now |
| 8 // 'chrome.automation.FooType'. | 8 // 'chrome.automation.FooType'. |
| 9 // Please run the closure compiler before committing changes. | 9 // Please run the closure compiler before committing changes. |
| 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md | 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md |
| (...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 chrome.automation.AutomationNode.prototype.backgroundColor; | 940 chrome.automation.AutomationNode.prototype.backgroundColor; |
| 941 | 941 |
| 942 /** | 942 /** |
| 943 * The RGBA color of an input element whose value is a color. | 943 * The RGBA color of an input element whose value is a color. |
| 944 * @type {(number|undefined)} | 944 * @type {(number|undefined)} |
| 945 * @see https://developer.chrome.com/extensions/automation#type-colorValue | 945 * @see https://developer.chrome.com/extensions/automation#type-colorValue |
| 946 */ | 946 */ |
| 947 chrome.automation.AutomationNode.prototype.colorValue; | 947 chrome.automation.AutomationNode.prototype.colorValue; |
| 948 | 948 |
| 949 /** | 949 /** |
| 950 * Bit-map of text styles: Bold, italic, underline, line through. |
| 951 * @type {(number|undefined)} |
| 952 * @see https://developer.chrome.com/extensions/automation#type-textStyle |
| 953 */ |
| 954 chrome.automation.AutomationNode.prototype.textStyle; |
| 955 |
| 956 /** |
| 950 * Walking the tree. | 957 * Walking the tree. |
| 951 * @type {!Array<!chrome.automation.AutomationNode>} | 958 * @type {!Array<!chrome.automation.AutomationNode>} |
| 952 * @see https://developer.chrome.com/extensions/automation#type-children | 959 * @see https://developer.chrome.com/extensions/automation#type-children |
| 953 */ | 960 */ |
| 954 chrome.automation.AutomationNode.prototype.children; | 961 chrome.automation.AutomationNode.prototype.children; |
| 955 | 962 |
| 956 /** | 963 /** |
| 957 * @type {(!chrome.automation.AutomationNode|undefined)} | 964 * @type {(!chrome.automation.AutomationNode|undefined)} |
| 958 * @see https://developer.chrome.com/extensions/automation#type-parent | 965 * @see https://developer.chrome.com/extensions/automation#type-parent |
| 959 */ | 966 */ |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 * tree between the two node/offset pairs gets included in the selection. The | 1215 * tree between the two node/offset pairs gets included in the selection. The |
| 1209 * anchor is where the user started the selection, while the focus is the point | 1216 * anchor is where the user started the selection, while the focus is the point |
| 1210 * at which the selection gets extended e.g. when dragging with a mouse or using | 1217 * at which the selection gets extended e.g. when dragging with a mouse or using |
| 1211 * the keyboard. For nodes with the role staticText, the offset gives the | 1218 * the keyboard. For nodes with the role staticText, the offset gives the |
| 1212 * character offset within the value where the selection starts or ends, | 1219 * character offset within the value where the selection starts or ends, |
| 1213 * respectively. | 1220 * respectively. |
| 1214 * @param {!chrome.automation.SetDocumentSelectionParams} params | 1221 * @param {!chrome.automation.SetDocumentSelectionParams} params |
| 1215 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel
ection | 1222 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel
ection |
| 1216 */ | 1223 */ |
| 1217 chrome.automation.setDocumentSelection = function(params) {}; | 1224 chrome.automation.setDocumentSelection = function(params) {}; |
| OLD | NEW |