| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
| 5 <link rel="stylesheet" href="chrome://resources/css/button.css"> | 5 <link rel="stylesheet" href="chrome://resources/css/button.css"> |
| 6 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/select.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/select.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> |
| 9 <link rel="stylesheet" href="bubble.css"> | 9 <link rel="stylesheet" href="bubble.css"> |
| 10 <link rel="stylesheet" href="header_bar.css"> | 10 <link rel="stylesheet" href="header_bar.css"> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 <script src="../user_images_grid.js"></script> | 30 <script src="../user_images_grid.js"></script> |
| 31 <script src="bubble.js"></script> | 31 <script src="bubble.js"></script> |
| 32 <script src="display_manager.js"></script> | 32 <script src="display_manager.js"></script> |
| 33 <script src="header_bar.js"></script> | 33 <script src="header_bar.js"></script> |
| 34 <script src="network_dropdown.js"></script> | 34 <script src="network_dropdown.js"></script> |
| 35 <script src="oobe.js"></script> | 35 <script src="oobe.js"></script> |
| 36 <script src="oobe_screen_eula.js"></script> | 36 <script src="oobe_screen_eula.js"></script> |
| 37 <script src="oobe_screen_network.js"></script> | 37 <script src="oobe_screen_network.js"></script> |
| 38 <script src="oobe_screen_update.js"></script> | 38 <script src="oobe_screen_update.js"></script> |
| 39 <script src="oobe_screen_user_image.js"></script> | 39 <script src="oobe_screen_user_image.js"></script> |
| 40 <script src="oobe_screen_enrollment.js"></script> | |
| 41 <script src="oobe_screen_oauth_enrollment.js"></script> | 40 <script src="oobe_screen_oauth_enrollment.js"></script> |
| 42 <script src="screen_account_picker.js"></script> | 41 <script src="screen_account_picker.js"></script> |
| 43 <script src="screen_gaia_signin.js"></script> | 42 <script src="screen_gaia_signin.js"></script> |
| 44 <script src="screen_error_message.js"></script> | 43 <script src="screen_error_message.js"></script> |
| 45 <script src="user_pod_row.js"></script> | 44 <script src="user_pod_row.js"></script> |
| 46 </head> | 45 </head> |
| 47 <body i18n-values=".style.fontFamily:fontfamily;"> | 46 <body i18n-values=".style.fontFamily:fontfamily;"> |
| 48 <include src="header_bar.html"> | 47 <include src="header_bar.html"> |
| 49 <div id="outer-container"> | 48 <div id="outer-container"> |
| 50 <div id="oobe" class="faded"> | 49 <div id="oobe" class="faded"> |
| 51 <div id="header"> | 50 <div id="header"> |
| 52 <span i18n-content="productName"></span> | 51 <span i18n-content="productName"></span> |
| 53 <div id="header-sections"></div> | 52 <div id="header-sections"></div> |
| 54 </div> | 53 </div> |
| 55 <hr class="top shadow"> | 54 <hr class="top shadow"> |
| 56 <div id="inner-container"> | 55 <div id="inner-container"> |
| 57 <include src="oobe_screen_network.html"> | 56 <include src="oobe_screen_network.html"> |
| 58 <include src="oobe_screen_eula.html"> | 57 <include src="oobe_screen_eula.html"> |
| 59 <include src="oobe_screen_update.html"> | 58 <include src="oobe_screen_update.html"> |
| 60 <include src="oobe_screen_enrollment.html"> | |
| 61 <include src="oobe_screen_oauth_enrollment.html"> | 59 <include src="oobe_screen_oauth_enrollment.html"> |
| 62 <include src="oobe_screen_user_image.html"> | 60 <include src="oobe_screen_user_image.html"> |
| 63 <include src="screen_gaia_signin.html"> | 61 <include src="screen_gaia_signin.html"> |
| 64 <include src="screen_account_picker.html"> | 62 <include src="screen_account_picker.html"> |
| 65 <include src="screen_error_message.html"> | 63 <include src="screen_error_message.html"> |
| 66 </div> | 64 </div> |
| 67 <hr class="bottom shadow"> | 65 <hr class="bottom shadow"> |
| 68 <div id="footer"> | 66 <div id="footer"> |
| 69 <div id="progress"></div> | 67 <div id="progress"></div> |
| 70 <div id="button-strip" class="button-strip"></div> | 68 <div id="button-strip" class="button-strip"></div> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 88 <p id="tpm-password" hidden></p> | 86 <p id="tpm-password" hidden></p> |
| 89 </div> | 87 </div> |
| 90 <button id="security-ok-button" i18n-content="eulaTpmOkButton"></button> | 88 <button id="security-ok-button" i18n-content="eulaTpmOkButton"></button> |
| 91 </div> | 89 </div> |
| 92 </div> | 90 </div> |
| 93 <div id="bubble" class="bubble faded" hidden></div> | 91 <div id="bubble" class="bubble faded" hidden></div> |
| 94 <include src="version.html"> | 92 <include src="version.html"> |
| 95 <include src="user_pod_template.html"> | 93 <include src="user_pod_template.html"> |
| 96 </body> | 94 </body> |
| 97 </html> | 95 </html> |
| OLD | NEW |