Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1083)

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs

Issue 1696443002: Re-land: Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs
diff --git a/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs b/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs
index 66ef0081254f2ccff1c0884aac6fab0979c10a09..bb9aa6c1f7d734ef12a27d489385cd7e2b285de8 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs
+++ b/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs
@@ -41,13 +41,12 @@ TEST_F('CvoxCommandStoreUnitTest', 'TableData', function() {
var controllingSpeechCmds =
cvox.CommandStore.commandsForCategory('controlling_speech');
- assertEquals(11, controllingSpeechCmds.length);
+ assertEquals(10, controllingSpeechCmds.length);
assertEquals('stopSpeech', controllingSpeechCmds[0]);
- assertEquals('toggleChromeVox', controllingSpeechCmds[1]);
- assertEquals('decreaseTtsRate', controllingSpeechCmds[2]);
- assertEquals('increaseTtsRate', controllingSpeechCmds[3]);
- assertEquals('decreaseTtsPitch', controllingSpeechCmds[4]);
- assertEquals('increaseTtsPitch', controllingSpeechCmds[5]);
+ assertEquals('decreaseTtsRate', controllingSpeechCmds[1]);
+ assertEquals('increaseTtsRate', controllingSpeechCmds[2]);
+ assertEquals('decreaseTtsPitch', controllingSpeechCmds[3]);
+ assertEquals('increaseTtsPitch', controllingSpeechCmds[4]);
});

Powered by Google App Engine
This is Rietveld 408576698