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 367ef13bced681773e8e893719974da568f6ea70..5bcba46d15976a65b3f2dde22e4fb80fb0956d50 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(); |
+ }); |
+}); |