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 d9951204d1cd3b2ee7aebac32a69dc62b51ac012..ad7bb7ee02c0a78923f08fc4b467d0eff821aefa 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background_test.extjs |
@@ -992,3 +992,12 @@ TEST_F('BackgroundTest', 'Selection', function() { |
.replay(); |
}); |
}); |
+ |
+TEST_F('BackgroundTest', 'DisabledState', function() { |
+ var mockFeedback = this.createMockFeedback(); |
+ this.runWithLoadedTree(function(root) {/*! |
+ <button aria-disabled="true">ok</button> |
+ */}, function(root) { |
+ mockFeedback.expectSpeech('ok', 'Disabled', 'Button').replay(); |
+ }); |
+}); |