Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link rel="stylesheet" href="login_ui.css" > | |
| 5 </head> | |
| 6 | |
| 7 <body> | |
| 8 <div id="sign-in-div"> | |
| 9 <div id="sign-in-body"> | |
| 10 <button type="button" id="open-login-screen-button" onclick="callOpenLogin Screen();"> | |
|
rjkroege
2011/02/23 20:05:30
I'd prefer if you line-broke at onclick and indent
rharrison
2011/02/23 20:24:50
Done.
| |
| 11 Open Login Screen | |
| 12 </button> | |
| 13 </div> | |
| 14 </div> | |
| 15 </body> | |
| 16 | |
| 17 <script> | |
| 18 function callOpenLoginScreen() { | |
| 19 chrome.send('OpenLoginScreen', []); | |
| 20 } | |
| 21 </script> | |
| 22 </html> | |
| OLD | NEW |