| OLD | NEW |
| 1 <div id="aboutPage" class="page" hidden> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title i18n-content="pageTitle"></title> |
| 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/open_sans.css"> |
| 10 <link rel="stylesheet" href="about_page.css"> |
| 11 |
| 12 <script src="chrome://resources/js/cr.js"></script> |
| 13 <script src="chrome://resources/js/util.js"></script> |
| 14 |
| 15 <script src="chrome://about-page-frame/about_page.js"></script> |
| 16 </head> |
| 17 |
| 18 <body> |
| 19 |
| 20 <div id="aboutPage" class="page"> |
| 2 <h1 i18n-content="product"></h1> | 21 <h1 i18n-content="product"></h1> |
| 3 <div id="aboutPageLessInfo"> | 22 <div id="aboutPageLessInfo"> |
| 4 <section> | 23 <section> |
| 5 <div> | 24 <div> |
| 6 <!-- White space is significant between spans. --> | 25 <!-- White space is significant between spans. --> |
| 7 <div> | 26 <div> |
| 8 <span i18n-content="browser"></span> | 27 <span i18n-content="browser"></span> |
| 9 <span i18n-content="browser_version"></span> | 28 <span i18n-content="browser_version"></span> |
| 10 </div> | 29 </div> |
| 11 <div> | 30 <div> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 <h3 i18n-content="user_agent"></h3> | 91 <h3 i18n-content="user_agent"></h3> |
| 73 <div i18n-content="user_agent_info"></div> | 92 <div i18n-content="user_agent_info"></div> |
| 74 </section> | 93 </section> |
| 75 <section> | 94 <section> |
| 76 <h3 i18n-content="command_line"></h3> | 95 <h3 i18n-content="command_line"></h3> |
| 77 <div i18n-content="command_line_info"></div> | 96 <div i18n-content="command_line_info"></div> |
| 78 </section> | 97 </section> |
| 79 </div> | 98 </div> |
| 80 <section> | 99 <section> |
| 81 <div> | 100 <div> |
| 82 <div i18n-content="copyright"></div> | 101 <span i18n-content="copyright"></span> |
| 83 <div> | 102 <div> |
| 84 <!-- Odd formatting to avoid unwanted spaces between elements. --> | 103 <!-- Odd formatting to avoid unwanted spaces between elements. --> |
| 85 <span i18n-content="license_content_0"> | 104 <span i18n-content="license_content_0"> |
| 86 </span><a target="_blank" | 105 </span><a target="_blank" |
| 87 i18n-values="href:license_link_0" | 106 i18n-values="href:license_link_0" |
| 88 i18n-content="license_link_content_0"> | 107 i18n-content="license_link_content_0"> |
| 89 </a><span i18n-content="license_content_1"> | 108 </a><span i18n-content="license_content_1"> |
| 90 </span><a target="_blank" | 109 </span><a target="_blank" |
| 91 i18n-values="href:license_link_1" | 110 i18n-values="href:license_link_1" |
| 92 i18n-content="license_link_content_1"> | 111 i18n-content="license_link_content_1"> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 110 <span id="updateStatus" i18n-content="update_status"></span> | 129 <span id="updateStatus" i18n-content="update_status"></span> |
| 111 </div> | 130 </div> |
| 112 <div> | 131 <div> |
| 113 <!-- TODO seanparent: fill in last checked. --> | 132 <!-- TODO seanparent: fill in last checked. --> |
| 114 <!-- <span i18n-content="last_check"></span> --> | 133 <!-- <span i18n-content="last_check"></span> --> |
| 115 <button id="checkNow" i18n-content="check_now" disabled></button> | 134 <button id="checkNow" i18n-content="check_now" disabled></button> |
| 116 </div> | 135 </div> |
| 117 </div> | 136 </div> |
| 118 </section> | 137 </section> |
| 119 </div> | 138 </div> |
| 139 |
| 140 </body> |
| 141 |
| 142 <script src="chrome://about-page-frame/strings.js"></script> |
| 143 <script src="chrome://resources/js/i18n_template.js"></script> |
| 144 <script src="chrome://resources/js/i18n_process.js"></script> |
| 145 </html> |
| OLD | NEW |