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

Unified Diff: third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js

Issue 1984963002: Roll Polymer elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js
diff --git a/third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js b/third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js
index 2b46b922e0219a63264dd648c282b096fea4a5ed..46f0ffca18e182b41565308c06ef387761fa4d5c 100644
--- a/third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js
+++ b/third_party/polymer/v1_0/components-chromium/iron-a11y-keys/iron-a11y-keys-extracted.js
@@ -1,13 +1,13 @@
-/*
-`iron-a11y-keys` provides a cross-browser interface for processing
-keyboard commands. The interface adheres to [WAI-ARIA best
-practices](http://www.w3.org/TR/wai-aria-practices/#kbd_general_binding).
+/**
+`iron-a11y-keys` provides a cross-browser interface for processing
+keyboard commands. The interface adheres to [WAI-ARIA best
+practices](http://www.w3.org/TR/wai-aria-practices/#kbd_general_binding).
It uses an expressive syntax to filter key presses.
## Basic usage
The sample code below is a portion of a custom element. The goal is to call
-the `onEnter` method whenever the `paper-input` element is in focus and
+the `onEnter` method whenever the `paper-input` element is in focus and
the `Enter` key is pressed.
<iron-a11y-keys id="a11y" target="[[target]]" keys="enter"
@@ -16,14 +16,14 @@ the `Enter` key is pressed.
placeholder="Type something. Press enter. Check console."
value="{{userInput::input}}"></paper-input>
-The custom element declares an `iron-a11y-keys` element that is bound to a
+The custom element declares an `iron-a11y-keys` element that is bound to a
property called `target`. The `target` property
-needs to evaluate to the `paper-input` node. `iron-a11y-keys` registers
+needs to evaluate to the `paper-input` node. `iron-a11y-keys` registers
an event handler for the target node using Polymer's [annotated event handler
-syntax](https://www.polymer-project.org/1.0/docs/devguide/events.html#annotated-listeners). `{{userInput::input}}` sets the `userInput` property to the
-user's input on each keystroke.
+syntax](https://www.polymer-project.org/1.0/docs/devguide/events.html#annotated-listeners). `{{userInput::input}}` sets the `userInput` property to the
+user's input on each keystroke.
-The last step is to link the two elements within the custom element's
+The last step is to link the two elements within the custom element's
registration.
...
@@ -48,71 +48,72 @@ registration.
The `keys` attribute expresses what combination of keys triggers the event.
-The attribute accepts a space-separated, plus-sign-concatenated
+The attribute accepts a space-separated, plus-sign-concatenated
set of modifier keys and some common keyboard keys.
-The common keys are: `a-z`, `0-9` (top row and number pad), `*` (shift 8 and
+The common keys are: `a-z`, `0-9` (top row and number pad), `*` (shift 8 and
number pad), `F1-F12`, `Page Up`, `Page Down`, `Left Arrow`, `Right Arrow`,
`Down Arrow`, `Up Arrow`, `Home`, `End`, `Escape`, `Space`, `Tab`, `Enter`.
-The modifier keys are: `Shift`, `Control`, `Alt`.
+The modifier keys are: `Shift`, `Control`, `Alt`, `Meta`.
All keys are expected to be lowercase and shortened. E.g.
-`Left Arrow` is `left`, `Page Down` is `pagedown`, `Control` is `ctrl`,
+`Left Arrow` is `left`, `Page Down` is `pagedown`, `Control` is `ctrl`,
`F1` is `f1`, `Escape` is `esc`, etc.
### Grammar
-Below is the [EBNF](http://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_Form)
+Below is the [EBNF](http://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_Form)
Grammar of the `keys` attribute.
- modifier = "shift" | "ctrl" | "alt";
+ modifier = "shift" | "ctrl" | "alt" | "meta";
ascii = ? /[a-z0-9]/ ? ;
fnkey = ? f1 through f12 ? ;
arrow = "up" | "down" | "left" | "right" ;
- key = "tab" | "esc" | "space" | "*" | "pageup" | "pagedown" |
+ key = "tab" | "esc" | "space" | "*" | "pageup" | "pagedown" |
"home" | "end" | arrow | ascii | fnkey;
keycombo = { modifier, "+" }, key ;
keys = keycombo, { " ", keycombo } ;
### Example
-Given the following value for `keys`:
+Given the following value for `keys`:
`ctrl+shift+f7 up pagedown esc space alt+m`
-The event is fired if any of the following key combinations are fired:
-`Control` and `Shift` and `F7` keys, `Up Arrow` key, `Page Down` key,
+The event is fired if any of the following key combinations are fired:
+`Control` and `Shift` and `F7` keys, `Up Arrow` key, `Page Down` key,
`Escape` key, `Space` key, `Alt` and `M` keys.
### WAI-ARIA Slider Example
-The following is an example of the set of keys that fulfills WAI-ARIA's
+The following is an example of the set of keys that fulfills WAI-ARIA's
"slider" role [best
practices](http://www.w3.org/TR/wai-aria-practices/#slider):
- <iron-a11y-keys target="[[target]]" keys="left pagedown down"
+ <iron-a11y-keys target="[[target]]" keys="left pagedown down"
on-keys-pressed="decrement"></iron-a11y-keys>
- <iron-a11y-keys target=""[[target]] keys="right pageup up"
+ <iron-a11y-keys target="[[target]]" keys="right pageup up"
on-keys-pressed="increment"></iron-a11y-keys>
- <iron-a11y-keys target="[[target]]" keys="home"
+ <iron-a11y-keys target="[[target]]" keys="home"
on-keys-pressed="setMin"></iron-a11y-keys>
- <iron-a11y-keys target=""[[target]] keys="end"
+ <iron-a11y-keys target=""[[target]] keys="end"
on-keys-pressed="setMax"></iron-a11y-keys>
-The `target` properties must evaluate to a node. See the basic usage
+The `target` properties must evaluate to a node. See the basic usage
example above.
Each of the values for the `on-keys-pressed` attributes must evalute
-to methods. The `increment` method should move the slider a set amount
-toward the maximum value. `decrement` should move the slider a set amount
-toward the minimum value. `setMin` should move the slider to the minimum
+to methods. The `increment` method should move the slider a set amount
+toward the maximum value. `decrement` should move the slider a set amount
+toward the minimum value. `setMin` should move the slider to the minimum
value. `setMax` should move the slider to the maximum value.
@demo demo/index.html
*/
+
Polymer({
is: 'iron-a11y-keys',

Powered by Google App Engine
This is Rietveld 408576698