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

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

Issue 2412613007: Suppress embedded object output and flush load complete output (Closed)
Patch Set: Address feedback Created 4 years, 2 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/desktop_automation_handler.js ('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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 date: { 442 date: {
443 enter: '$nameFromNode $role $description' 443 enter: '$nameFromNode $role $description'
444 }, 444 },
445 dialog: { 445 dialog: {
446 enter: '$nameFromNode $role $description' 446 enter: '$nameFromNode $role $description'
447 }, 447 },
448 div: { 448 div: {
449 enter: '$nameFromNode', 449 enter: '$nameFromNode',
450 speak: '$name $description $descendants' 450 speak: '$name $description $descendants'
451 }, 451 },
452 embeddedObject: {
453 speak: '$name'
454 },
452 grid: { 455 grid: {
453 enter: '$nameFromNode $role $description' 456 enter: '$nameFromNode $role $description'
454 }, 457 },
455 group: { 458 group: {
456 enter: '$nameFromNode $state $description', 459 enter: '$nameFromNode $state $description',
457 speak: '$nameOrDescendants $value $state $description', 460 speak: '$nameOrDescendants $value $state $description',
458 leave: '' 461 leave: ''
459 }, 462 },
460 heading: { 463 heading: {
461 enter: '!relativePitch(hierarchicalLevel) ' + 464 enter: '!relativePitch(hierarchicalLevel) ' +
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1730 /** 1733 /**
1731 * Gets the output buffer for braille. 1734 * Gets the output buffer for braille.
1732 * @return {!Spannable} 1735 * @return {!Spannable}
1733 */ 1736 */
1734 get brailleOutputForTest() { 1737 get brailleOutputForTest() {
1735 return this.createBrailleOutput_(); 1738 return this.createBrailleOutput_();
1736 } 1739 }
1737 }; 1740 };
1738 1741
1739 }); // goog.scope 1742 }); // goog.scope
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698