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

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

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 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
OLDNEW
1 1 /**
2
3 /**
4 * `Polymer.IronMenubarBehavior` implements accessible menubar behavior. 2 * `Polymer.IronMenubarBehavior` implements accessible menubar behavior.
5 * 3 *
6 * @polymerBehavior Polymer.IronMenubarBehavior 4 * @polymerBehavior Polymer.IronMenubarBehavior
7 */ 5 */
8 Polymer.IronMenubarBehaviorImpl = { 6 Polymer.IronMenubarBehaviorImpl = {
9 7
10 hostAttributes: { 8 hostAttributes: {
11 'role': 'menubar' 9 'role': 'menubar'
12 }, 10 },
13 11
(...skipping 28 matching lines...) Expand all
42 // all other keys focus the menu item starting with that character 40 // all other keys focus the menu item starting with that character
43 this._focusWithKeyboardEvent(event); 41 this._focusWithKeyboardEvent(event);
44 } 42 }
45 43
46 }; 44 };
47 45
48 /** @polymerBehavior Polymer.IronMenubarBehavior */ 46 /** @polymerBehavior Polymer.IronMenubarBehavior */
49 Polymer.IronMenubarBehavior = [ 47 Polymer.IronMenubarBehavior = [
50 Polymer.IronMenuBehavior, 48 Polymer.IronMenuBehavior,
51 Polymer.IronMenubarBehaviorImpl 49 Polymer.IronMenubarBehaviorImpl
52 ]; 50 ];
53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698