Service workers: Allow HTTPS pages arrived at via HTTP redirect to use SW
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / paper-material / paper-material-extracted.js
blobcaf5f9dc67303875b145eab5c990e4939cad2539
1 Polymer({
2     is: 'paper-material',
4     properties: {
6       /**
7        * The z-depth of this element, from 0-5. Setting to 0 will remove the
8        * shadow, and each increasing number greater than 0 will be "deeper"
9        * than the last.
10        *
11        * @attribute elevation
12        * @type number
13        * @default 1
14        */
15       elevation: {
16         type: Number,
17         reflectToAttribute: true,
18         value: 1
19       },
21       /**
22        * Set this to true to animate the shadow when setting a new
23        * `elevation` value.
24        *
25        * @attribute animated
26        * @type boolean
27        * @default false
28        */
29       animated: {
30         type: Boolean,
31         reflectToAttribute: true,
32         value: false
33       }
34     }
35   });