| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| index 9d025a9308bdd84fdb0c5d0d8f8ed8df921c97cc..28aade9f70e50bd890ac8aed14f433c31c22a68e 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| @@ -831,7 +831,8 @@ Background.prototype = {
|
| // If nothing is focusable, set the sequential focus navigation starting
|
| // point, which ensures that the next time you press Tab, you'll reach
|
| // the next or previous focusable node from |start|.
|
| - start.setSequentialFocusNavigationStartingPoint();
|
| + if (!start.state.offscreen)
|
| + start.setSequentialFocusNavigationStartingPoint();
|
| }
|
| };
|
|
|
|
|