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

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

Issue 2080573003: Track all changed nodes during an update (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
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 msgId: 'role_math', 224 msgId: 'role_math',
225 inherits: 'abstractContainer' 225 inherits: 'abstractContainer'
226 }, 226 },
227 menu: { 227 menu: {
228 msgId: 'role_menu' 228 msgId: 'role_menu'
229 }, 229 },
230 menuBar: { 230 menuBar: {
231 msgId: 'role_menubar', 231 msgId: 'role_menubar',
232 }, 232 },
233 menuItem: { 233 menuItem: {
234 msgId: 'role_menuitem', 234 msgId: 'role_menuitem'
235 ignoreAncestry: true
236 }, 235 },
237 menuItemCheckBox: { 236 menuItemCheckBox: {
238 msgId: 'role_menuitemcheckbox', 237 msgId: 'role_menuitemcheckbox',
239 ignoreAncestry: true 238 ignoreAncestry: true
240 }, 239 },
241 menuItemRadio: { 240 menuItemRadio: {
242 msgId: 'role_menuitemradio', 241 msgId: 'role_menuitemradio',
243 ignoreAncestry: true 242 ignoreAncestry: true
244 }, 243 },
245 menuListOption: { 244 menuListOption: {
(...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 break; 1641 break;
1643 } 1642 }
1644 earconFinder = earconFinder.parent; 1643 earconFinder = earconFinder.parent;
1645 } 1644 }
1646 } 1645 }
1647 return null; 1646 return null;
1648 } 1647 }
1649 }; 1648 };
1650 1649
1651 }); // goog.scope 1650 }); // goog.scope
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698