Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
|
Dan Beam
2016/01/06 22:57:57
<!doctype html> before <html>
anthonyvd
2016/01/08 22:39:41
Done.
| |
| 2 <head> | |
|
Robert Sesek
2016/01/06 19:30:08
Does this page display internationalized content?
anthonyvd
2016/01/08 22:39:41
Done.
| |
| 3 <link rel="stylesheet" type="text/css" href="sync-confirmation.css" media="s creen"></link> | |
|
Dan Beam
2016/01/06 22:57:57
type="text/css" probably isn't necessary either
Dan Beam
2016/01/06 22:57:57
media="screen" isn't necessary unless you want to
anthonyvd
2016/01/08 22:39:41
Done.
anthonyvd
2016/01/08 22:39:41
Done.
| |
| 4 <script src="chrome://resources/js/cr.js"></script> | |
| 5 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 6 <script src="chrome://resources/js/util.js"></script> | |
| 7 <script type="text/javascript" src="sync-confirmation.js"></script> | |
|
Dan Beam
2016/01/06 22:57:57
remove type="text/javascript"
anthonyvd
2016/01/08 22:39:41
Done.
| |
| 8 </head> | |
| 9 <body> | |
| 10 <div class="container"> | |
| 11 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> | |
| 12 <div class="details"> | |
| 13 <div class="picture-container"> | |
| 14 <div class="picture"> | |
| 15 <img id="profile-picture"></img> | |
| 16 <div class="checkmark-bubble"></div> | |
| 17 </div> | |
| 18 </div> | |
| 19 <div class="sync-message" i18n-values=".innerHTML:syncConfirmationBody"> </div> | |
| 20 <div class="action-container"> | |
| 21 <div class="action-button-wrapper"> | |
| 22 <div class="action-button" id="confirmButton"> | |
| 23 <span class="action-button-label" i18n-content="syncConfirmationCo nfirmLabel"></span> | |
| 24 </div> | |
| 25 </div> | |
| 26 <div class="link-wrapper"> | |
| 27 <span class="link" id="undoLink" i18n-content="syncConfirmationUndoL abel"></span> | |
| 28 </div> | |
| 29 </div> | |
| 30 </div> | |
| 31 </div> | |
| 32 </body> | |
| 33 <script src="chrome://sync-confirmation/strings.js"></script> | |
| 34 <script src="chrome://resources/js/i18n_template.js"></script> | |
| 35 </html> | |
| OLD | NEW |