| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.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/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 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/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> | 9 --> |
| 10 <html> | 10 <html> |
| 11 <head> | 11 <head> |
| 12 | 12 |
| 13 <meta charset="utf-8"> | 13 <meta charset="utf-8"> |
| 14 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 14 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 15 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | 15 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> |
| 16 | 16 |
| 17 <title>simple-button</title> | 17 <title>simple-button</title> |
| 18 | 18 |
| 19 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> | 19 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
| 20 <link href="../../paper-styles/demo-pages.html" rel="import"> | 20 <link href="../../paper-styles/demo-pages.html" rel="import"> |
| 21 <link href="simple-button.html" rel="import"> | 21 <link href="simple-button.html" rel="import"> |
| 22 | 22 |
| 23 <style> | 23 <style> |
| 24 | 24 |
| 25 .vertical-section { | 25 .vertical-section { |
| 26 text-align: center; | 26 text-align: center; |
| 27 } | 27 } |
| 28 | 28 |
| 29 </style> | 29 </style> |
| 30 | 30 |
| 31 </head> | 31 </head> |
| 32 <body> | 32 <body> |
| 33 <div class="vertical-section vertical-section-container centered"> | 33 <div class="vertical-section vertical-section-container centered"> |
| 34 <h3>Normal</h3> | 34 <h3>Normal</h3> |
| 35 | 35 |
| 36 <simple-button tabindex="0">Hello World</simple-button> | 36 <simple-button tabindex="0">Hello World</simple-button> |
| 37 | 37 |
| 38 <h3>Toggles</h3> | 38 <h3>Toggles</h3> |
| 39 | 39 |
| 40 <simple-button toggles tabindex="0">Hello World</simple-button> | 40 <simple-button toggles tabindex="0">Hello World</simple-button> |
| 41 | 41 |
| 42 <h3>Disabled</h3> | 42 <h3>Disabled</h3> |
| 43 | 43 |
| 44 <simple-button disabled tabindex="0">Hello World</simple-button> | 44 <simple-button disabled tabindex="0">Hello World</simple-button> |
| 45 </div> | 45 </div> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |