Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>Settings</title> | 5 <title>Settings</title> |
| 6 <link rel="import" | 6 <link rel="import" |
| 7 href="chrome://resources/polymer/paper-button/paper-button.html"> | 7 href="chrome://resources/polymer/paper-button/paper-button.html"> |
| 8 <link rel="import" | |
| 9 href="chrome://resources/cr_elements/cr_toggle_button/cr-toggle-button.htm l"> | |
| 8 </head> | 10 </head> |
| 9 <body> | 11 <body> |
| 10 <header> | 12 <header> |
| 11 <h1>Settings</h1> | 13 <h1>Settings</h1> |
| 12 </header> | 14 </header> |
| 13 <div class="main"> | 15 <div class="main"> |
| 14 <paper-button id="manage-button" raised>Manage</paper-button> | 16 <paper-button id="manage-button" raised>Manage</paper-button> |
| 15 </div> | 17 </div> |
| 18 <p> | |
|
Jeremy Klein
2015/02/09 18:24:51
Nit: Not that it matters at this point, but I don'
Oren Blasberg
2015/02/09 18:27:32
Or just move this <p>...</p> block within the 'mai
michaelpg
2015/02/09 22:11:19
Done.
| |
| 19 <cr-toggle-button checked></cr-toggle-button> | |
| 20 </p> | |
| 16 </body> | 21 </body> |
| 17 </html> | 22 </html> |
| OLD | NEW |