| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polym
er.github.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/CO
NTRIBUTORS.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/P
ATENTS.txt |
| 9 --> |
| 10 <script> |
| 11 (function() { |
| 12 |
| 13 window.a1DocsList = []; |
| 14 |
| 15 class A1 extends HTMLElement { |
| 16 connectedCallback() { |
| 17 a1DocsList.push(this.ownerDocument.baseURI.split('/').pop()); |
| 18 this.isA1 = true; |
| 19 } |
| 20 } |
| 21 window.customElements.define('a-1', A1); |
| 22 |
| 23 |
| 24 class SpecialStyle extends HTMLStyleElement { |
| 25 connectedCallback() { |
| 26 window.styleAppliedToDocument = Boolean(this.__appliedElement); |
| 27 } |
| 28 } |
| 29 window.customElements.define('special-style', SpecialStyle); |
| 30 |
| 31 })(); |
| 32 </script> |
| OLD | NEW |