OLD | NEW |
(Empty) | |
| 1 |
| 2 <!doctype html> |
| 3 <!-- |
| 4 Copyright 2013 The Polymer Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style |
| 6 license that can be found in the LICENSE file. |
| 7 --> |
| 8 <html> |
| 9 <head> |
| 10 <title>Arrows</title> |
| 11 <script src="../platform/platform.js"></script> |
| 12 <link rel="import" href="polymer-ui-arrow.html"> |
| 13 </head> |
| 14 <body style="background: whitesmoke;" unresolved> |
| 15 <polymer-ui-arrow direction="up"></polymer-ui-arrow> |
| 16 <br><br> |
| 17 <polymer-ui-arrow direction="down" size="20" color="whitesmoke" borderWidth=
"8"></polymer-ui-arrow> |
| 18 <br><br> |
| 19 <polymer-ui-arrow direction="right" size="30" color="blue" borderColor="ligh
tblue" borderWidth="6"></polymer-ui-arrow> |
| 20 <br><br> |
| 21 <polymer-ui-arrow direction="left" color="#aaa" borderColor="#aaa"></polymer
-ui-arrow> |
| 22 </body> |
| 23 </html> |
OLD | NEW |