Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Side by Side Diff: test/iron_iconset_svg_test.html

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/iron_iconset_svg_test.dart ('k') | test/iron_iconset_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « test/iron_iconset_svg_test.dart ('k') | test/iron_iconset_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698