| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs
|
| index 2a142914d5944518a27f78887072a56a93f8abc9..0281c75e25fc58d36f1f63693dca853f38e06373 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs
|
| @@ -703,3 +703,19 @@ TEST_F('BackgroundTest', 'ToggleButton', function() {
|
| .replay();
|
| });
|
| });
|
| +
|
| +TEST_F('BackgroundTest', 'EditText', function() {
|
| + var mockFeedback = this.createMockFeedback();
|
| + this.runWithLoadedTree(function() {/*!
|
| + <input type="text"></input>
|
| + <input role="combobox" type="text"></input>
|
| + */}, function(root) {
|
| + var nextEditText = this.doCmd('nextEditText');
|
| + var previousEditText = this.doCmd('previousEditText');
|
| + mockFeedback.call(nextEditText)
|
| + .expectSpeech('Combo box')
|
| + .call(previousEditText)
|
| + .expectSpeech('Edit text')
|
| + .replay();
|
| + });
|
| +});
|
|
|