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

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

Issue 2075473002: Fix alert dialog output. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 braille: '' 408 braille: ''
409 }, 409 },
410 abstractContainer: { 410 abstractContainer: {
411 enter: '$nameFromNode $role $description', 411 enter: '$nameFromNode $role $description',
412 leave: '@exited_container($role)' 412 leave: '@exited_container($role)'
413 }, 413 },
414 alert: { 414 alert: {
415 speak: '!doNotInterrupt $role $descendants' 415 speak: '!doNotInterrupt $role $descendants'
416 }, 416 },
417 alertDialog: { 417 alertDialog: {
418 enter: '$nameFromNode $role $description $descendants' 418 enter: '$nameFromNode $role $description',
419 speak: '$name $role $descendants'
419 }, 420 },
420 cell: { 421 cell: {
421 enter: '@column_granularity $tableCellColumnIndex' 422 enter: '@column_granularity $tableCellColumnIndex'
422 }, 423 },
423 checkBox: { 424 checkBox: {
424 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' + 425 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' +
425 '$name $role $checked $description' 426 '$name $role $checked $description'
426 }, 427 },
427 dialog: { 428 dialog: {
428 enter: '$nameFromNode $role $description' 429 enter: '$nameFromNode $role $description'
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1622 break; 1623 break;
1623 } 1624 }
1624 earconFinder = earconFinder.parent; 1625 earconFinder = earconFinder.parent;
1625 } 1626 }
1626 } 1627 }
1627 return null; 1628 return null;
1628 } 1629 }
1629 }; 1630 };
1630 1631
1631 }); // goog.scope 1632 }); // goog.scope
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698