Implement OCSP stapling in Windows BoringSSL port.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / paper-icon-button / paper-icon-button-extracted.js
blob4a6920b044b3c7f4feb9b63dfd6df2aff9e3b037
3 Polymer('paper-icon-button', {
5 publish: {
7 /**
8 * If true, the ripple expands to a square to fill the containing box.
10 * @attribute fill
11 * @type boolean
12 * @default false
14 fill: {value: false, reflect: true}
18 ready: function() {
19 this.$.ripple.classList.add('recenteringTouch');
20 this.fillChanged();
23 fillChanged: function() {
24 this.$.ripple.classList.toggle('circle', !this.fill);
27 iconChanged: function(oldIcon) {
28 if (!this.label) {
29 this.setAttribute('aria-label', this.icon);
33 });