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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs

Issue 845693004: Initial implementation of continuous read for ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove e2e test. Created 5 years, 11 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/cvox2/background/output_test.extjs
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
index 2425451705c3a54d51e64d147065c4d8c832dce9..8e2709f07c3eda619890628ac384eb333f77240b 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
@@ -26,7 +26,7 @@ TEST_F('OutputE2ETest', 'RenderBasic', function() {
function(root) {
var link = root.firstChild.firstChild;
var range = cursors.Range.fromNode(link);
- var o = new Output(range, null, 'navigate');
+ var o = new Output().withSpeechAndBraille(range, null, 'navigate');
assertEqualsJSON({string_: 'Click here Link', 'spans_': [
{value: 'name', start: 0, end: 10},
// Link earcon.
@@ -36,4 +36,3 @@ TEST_F('OutputE2ETest', 'RenderBasic', function() {
testDone();
}.bind(this));
});
-

Powered by Google App Engine
This is Rietveld 408576698