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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/paper-radio-group/paper-radio-group.html

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh Created 5 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
(Empty)
1 <!--
2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><html><head><link rel="import" href="../polymer/polymer.html">
10 <link rel="import" href="../iron-selector/iron-selector.html">
11 <link rel="import" href="../paper-radio-button/paper-radio-button.html">
12 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html ">
13
14 <!--
15 `paper-radio-group` allows user to select only one radio button from a set.
16 Checking one radio button that belongs to a radio group unchecks any
17 previously checked radio button within the same group. Use
18 `selected` to get or set the selected radio button.
19
20 Example:
21
22 <paper-radio-group selected="small">
23 <paper-radio-button name="small" label="Small"></paper-radio-button>
24 <paper-radio-button name="medium" label="Medium"></paper-radio-button>
25 <paper-radio-button name="large" label="Large"></paper-radio-button>
26 </paper-radio-group>
27
28 See <a href="paper-radio-button.html">paper-radio-button</a> for more
29 information about `paper-radio-button`.
30
31 @group Paper Elements
32 @element paper-radio-group
33 @hero hero.svg
34 @demo demo/index.html
35 -->
36
37 </head><body><dom-module name="paper-radio-group">
38 <style>
39 :host {
40 display: inline-block;
41 }
42
43 iron-selector ::content > * {
44 padding: 12px;
45 }
46 </style>
47
48 <template>
49 <iron-selector selected="{{selected}}" attr-for-selected="name" selectable=" paper-radio-button">
50 <content id="items" select="*"></content>
51 </iron-selector>
52 </template>
53
54 </dom-module>
55
56 <script src="paper-radio-group-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698