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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-menu-behavior/iron-menubar-behavior-extracted.js

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 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 /** 1
2
3 /**
2 * `Polymer.IronMenubarBehavior` implements accessible menubar behavior. 4 * `Polymer.IronMenubarBehavior` implements accessible menubar behavior.
3 * 5 *
4 * @polymerBehavior Polymer.IronMenubarBehavior 6 * @polymerBehavior Polymer.IronMenubarBehavior
5 */ 7 */
6 Polymer.IronMenubarBehaviorImpl = { 8 Polymer.IronMenubarBehaviorImpl = {
7 9
8 hostAttributes: { 10 hostAttributes: {
9 'role': 'menubar' 11 'role': 'menubar'
10 }, 12 },
11 13
(...skipping 26 matching lines...) Expand all
38 // all other keys focus the menu item starting with that character 40 // all other keys focus the menu item starting with that character
39 this._focusWithKeyboardEvent(event); 41 this._focusWithKeyboardEvent(event);
40 } 42 }
41 43
42 }; 44 };
43 45
44 /** @polymerBehavior Polymer.IronMenubarBehavior */ 46 /** @polymerBehavior Polymer.IronMenubarBehavior */
45 Polymer.IronMenubarBehavior = [ 47 Polymer.IronMenubarBehavior = [
46 Polymer.IronMenuBehavior, 48 Polymer.IronMenuBehavior,
47 Polymer.IronMenubarBehaviorImpl 49 Polymer.IronMenubarBehaviorImpl
48 ]; 50 ];
51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698