Chromecast: registers old client_id metrics pref.
[chromium-blink-merge.git] / third_party / polymer / v0_8 / components-chromium / paper-material / paper-material-extracted.js
blob7a8f85050931881ababe2f18258005bd14dcf686
2   Polymer({
3     is: 'paper-material',
5     properties: {
7       /**
8        * The z-depth of this element, from 0-5. Setting to 0 will remove the
9        * shadow, and each increasing number greater than 0 will be "deeper"
10        * than the last.
11        *
12        * @attribute elevation
13        * @type number
14        * @default 1
15        */
16       elevation: {
17         type: Number,
18         reflectToAttribute: true,
19         value: 1
20       },
22       /**
23        * Set this to true to animate the shadow when setting a new
24        * `elevation` value.
25        *
26        * @attribute animated
27        * @type boolean
28        * @default false
29        */
30       animated: {
31         type: Boolean,
32         reflectToAttribute: true,
33         value: false
34       }
35     }
36   });