Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="/bower_components/iron-icon/iron-icon.html"> | |
| 2 <dom-module id="som-rotation-calendar"> | |
| 3 <template> | |
| 4 <style> | |
| 5 iframe { | |
| 6 border: 0; | |
| 7 overflow: scroll; | |
| 8 } | |
| 9 </style> | |
| 10 <h2>Rotation Calendar | |
| 11 <a target="_blank" href="https://chromium-build.appspot.com/static/rotatio ns.html"> | |
| 12 <iron-icon icon="link"></iron-icon> | |
| 13 </a> | |
| 14 </h2> | |
| 15 <div class="flex layout vertical"> | |
| 16 <iframe | |
| 17 src="https://chromium-build.appspot.com/static/rotations.html" | |
| 18 class="flex" | |
| 19 ></iframe> | |
| 20 </div> | |
| 21 </template> | |
| 22 <script> | |
| 23 (function() { | |
| 24 'use strict'; | |
| 25 | |
| 26 Polymer({ | |
| 27 is: 'som-rotation-calendar', | |
| 28 }); | |
| 29 })(); | |
| 30 </script> | |
| 31 </dom-module> | |
| OLD | NEW |