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

Unified Diff: chrome/test/data/chromeos/liblouis_nacl/test.js

Issue 2954413003: Support rich line output in both speech and braille (Closed)
Patch Set: Fix browser test Created 3 years, 6 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/test/data/chromeos/liblouis_nacl/test.js
diff --git a/chrome/test/data/chromeos/liblouis_nacl/test.js b/chrome/test/data/chromeos/liblouis_nacl/test.js
index 142773b416e9acf884783652afc64ef4d007c603..73910348e28f6ad3382d8b231847a56fad0d2e88 100644
--- a/chrome/test/data/chromeos/liblouis_nacl/test.js
+++ b/chrome/test/data/chromeos/liblouis_nacl/test.js
@@ -71,7 +71,8 @@ loadLibrary(function() {
},
function testTranslateString() {
- rpc('Translate', { 'table_names': TABLE_NAME, 'text': TEXT},
+ rpc('Translate', { 'table_names': TABLE_NAME, 'text': TEXT,
+ form_type_map: []},
pass(expectSuccessReply(function(reply) {
chrome.test.assertEq(CELLS, reply['cells']);
})));
@@ -82,7 +83,8 @@ loadLibrary(function() {
// letter 'T' should be translated to 3 cells in US English grade 2
// braille (dots 56, 6, 2345).
function testTranslateGrade2SingleCapital() {
- rpc('Translate', { 'table_names': CONTRACTED_TABLE_NAME, 'text': 'T'},
+ rpc('Translate', { 'table_names': CONTRACTED_TABLE_NAME, 'text': 'T',
+ form_type_map: []},
pass(expectSuccessReply(function(reply) {
chrome.test.assertEq('30201e', reply['cells']);
})));

Powered by Google App Engine
This is Rietveld 408576698