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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-extracted.js

Issue 1134013004: Rerun reproduce.sh and pick up some missing elements with git add -f. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Lots of small fixes to help wire things together for the 0.8 upgrade. Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1
2 Polymer({
3 is: 'paper-icon-button',
4
5 behaviors: [
6 Polymer.PaperButtonBehavior
7 ],
8
9 enableCustomStyleProperties: true,
10
11 properties: {
12 /**
13 * The URL of an image for the icon. If the src property is specified,
14 * the icon property should not be.
15 */
16 src: {
17 type: String
18 },
19
20 /**
21 * Specifies the icon name or index in the set of icons available in
22 * the icon's icon set. If the icon property is specified,
23 * the src property should not be.
24 */
25 icon: {
26 type: String
27 }
28 }
29 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698