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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 2965683002: Expand EditableLine to include non-inline text box leafs (Closed)
Patch Set: We want last child of previous sibling. Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/editing_test.extjs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Provides output services for ChromeVox. 6 * @fileoverview Provides output services for ChromeVox.
7 */ 7 */
8 8
9 goog.provide('Output'); 9 goog.provide('Output');
10 goog.provide('Output.EventType'); 10 goog.provide('Output.EventType');
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 '$description' 338 '$description'
339 }, 339 },
340 listBoxOption: { 340 listBoxOption: {
341 speak: '$name $role @describe_index($indexInParent, $parentChildCount) ' + 341 speak: '$name $role @describe_index($indexInParent, $parentChildCount) ' +
342 '$description $state' 342 '$description $state'
343 }, 343 },
344 listItem: { 344 listItem: {
345 enter: '$name= $role $state $description', 345 enter: '$name= $role $state $description',
346 speak: '$nameOrDescendants $earcon(LIST_ITEM) $role $state $description' 346 speak: '$nameOrDescendants $earcon(LIST_ITEM) $role $state $description'
347 }, 347 },
348 listMarker: {speak: '$name'},
348 menu: { 349 menu: {
349 enter: '$name $role', 350 enter: '$name $role',
350 speak: '$name $role @@list_with_items($countChildren(menuItem)) $state' 351 speak: '$name $role @@list_with_items($countChildren(menuItem)) $state'
351 }, 352 },
352 menuItem: { 353 menuItem: {
353 speak: '$name $role $if($haspopup, @has_submenu) ' + 354 speak: '$name $role $if($haspopup, @has_submenu) ' +
354 '@describe_index($indexInParent, $parentChildCount) ' + 355 '@describe_index($indexInParent, $parentChildCount) ' +
355 '$description $state' 356 '$description $state'
356 }, 357 },
357 menuItemCheckBox: { 358 menuItemCheckBox: {
(...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1694 /** 1695 /**
1695 * Gets the output buffer for braille. 1696 * Gets the output buffer for braille.
1696 * @return {!Spannable} 1697 * @return {!Spannable}
1697 */ 1698 */
1698 get brailleOutputForTest() { 1699 get brailleOutputForTest() {
1699 return this.mergeBraille_(this.brailleBuffer_); 1700 return this.mergeBraille_(this.brailleBuffer_);
1700 } 1701 }
1701 }; 1702 };
1702 1703
1703 }); // goog.scope 1704 }); // goog.scope
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/editing_test.extjs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698