Commit 16e4495f authored by David Tseng's avatar David Tseng Committed by Commit Bot

Extend clickable hint in ChromeVox

Change-Id: Id5bc5e4ad89882a10342b23a68db10d8b9872d4a
Reviewed-on: https://chromium-review.googlesource.com/c/1481905Reviewed-by: default avatarJenny Zhang <jennyz@chromium.org>
Commit-Queue: David Tseng <dtseng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#634448}
parent dd37c53e
...@@ -480,7 +480,13 @@ AutomationPredicate.checkable = function(node) { ...@@ -480,7 +480,13 @@ AutomationPredicate.checkable = function(node) {
* @return {boolean} * @return {boolean}
*/ */
AutomationPredicate.clickable = AutomationPredicate.match({ AutomationPredicate.clickable = AutomationPredicate.match({
anyPredicate: [AutomationPredicate.button, AutomationPredicate.link], anyPredicate: [
AutomationPredicate.button, AutomationPredicate.link,
(node) => {
return node.defaultActionVerb ==
chrome.automation.DefaultActionVerb.CLICK;
}
],
anyAttribute: {clickable: true} anyAttribute: {clickable: true}
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment