| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 @license | 3 @license |
| 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 8 Code distributed by Google as part of the polymer project is also | 8 Code distributed by Google as part of the polymer project is also |
| 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 10 --> | 10 --> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 <iron-iconset-svg name="foo"></iron-iconset-svg> | 25 <iron-iconset-svg name="foo"></iron-iconset-svg> |
| 26 <iron-meta type="iconset"></iron-meta> | 26 <iron-meta type="iconset"></iron-meta> |
| 27 </template> | 27 </template> |
| 28 | 28 |
| 29 <template id="StandardIconsetSvg"> | 29 <template id="StandardIconsetSvg"> |
| 30 <iron-iconset-svg name="my-icons" size="20"> | 30 <iron-iconset-svg name="my-icons" size="20"> |
| 31 <svg> | 31 <svg> |
| 32 <defs> | 32 <defs> |
| 33 <circle id="circle" cx="20" cy="20" r="10"></circle> | 33 <circle id="circle" cx="20" cy="20" r="10"></circle> |
| 34 <rect id="square" x="0" y="0" width="20" height="20"></rect> | 34 <rect id="square" x="0" y="0" width="20" height="20"></rect> |
| 35 <symbol id="rect" viewBox="0 0 50 25"> |
| 36 <rect x="0" y="0" width="50" height="25"></rect> |
| 37 </symbol> |
| 35 </defs> | 38 </defs> |
| 36 </svg> | 39 </svg> |
| 37 </iron-iconset-svg> | 40 </iron-iconset-svg> |
| 38 <div></div> | 41 <div></div> |
| 39 </template> | 42 </template> |
| 40 </body> | 43 </body> |
| 41 </html> | 44 </html> |
| OLD | NEW |