| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 about:version template page | 4 about:version template page |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html id="t" i18n-values="dir:textdirection;lang:language"> | 7 <html id="t" i18n-values="dir:textdirection;lang:language"> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <title i18n-content="title"></title> | 10 <title i18n-content="title"></title> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <script src="chrome://resources/js/util.js"></script> | 28 <script src="chrome://resources/js/util.js"></script> |
| 29 <script src="chrome://version/version.js"></script> | 29 <script src="chrome://version/version.js"></script> |
| 30 <script src="chrome://version/strings.js"></script> | 30 <script src="chrome://version/strings.js"></script> |
| 31 </head> | 31 </head> |
| 32 | 32 |
| 33 <body> | 33 <body> |
| 34 <div id="outer"> | 34 <div id="outer"> |
| 35 <div id="logo"> | 35 <div id="logo"> |
| 36 <if expr="not is_android and not is_ios"> | 36 <if expr="not is_android and not is_ios"> |
| 37 <!-- Version for themes. --> | 37 <!-- Version for themes. --> |
| 38 <img src="chrome://theme/IDR_PRODUCT_LOGO"> | 38 <img src="chrome://theme/IDR_PRODUCT_LOGO_NAME_22"> |
| 39 </if> | 39 </if> |
| 40 <if expr="is_ios or is_android"> | 40 <if expr="is_ios or is_android"> |
| 41 <img src="../../../components/resources/default_100_percent/%DISTRIBUTIO
N%/product_logo.png"> | 41 <img src="../../../components/resources/default_100_percent/%DISTRIBUTIO
N%/product_logo_name_22.png"> |
| 42 </if> | 42 </if> |
| 43 <div id="company" i18n-content="company"></div> | 43 <div id="company" i18n-content="company"></div> |
| 44 <div id="copyright" i18n-content="copyright"></div> | 44 <div id="copyright" i18n-content="copyright"></div> |
| 45 </div> | 45 </div> |
| 46 <table id="inner" cellpadding="0" cellspacing="0" border="0"> | 46 <table id="inner" cellpadding="0" cellspacing="0" border="0"> |
| 47 <tr><td class="label" i18n-content="application_label"></td> | 47 <tr><td class="label" i18n-content="application_label"></td> |
| 48 <td class="version" id="version"> | 48 <td class="version" id="version"> |
| 49 <span i18n-content="version"></span> | 49 <span i18n-content="version"></span> |
| 50 (<span i18n-content="official"></span>) | 50 (<span i18n-content="official"></span>) |
| 51 <span i18n-content="version_modifier"></span> | 51 <span i18n-content="version_modifier"></span> |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 <tr id="compiler-section"> | 129 <tr id="compiler-section"> |
| 130 <td class="label">Compiler</td> | 130 <td class="label">Compiler</td> |
| 131 <td class="version" id="compiler" i18n-content="compiler"></td> | 131 <td class="version" id="compiler" i18n-content="compiler"></td> |
| 132 </tr> | 132 </tr> |
| 133 </if> | 133 </if> |
| 134 </table> | 134 </table> |
| 135 </div> | 135 </div> |
| 136 <script src="chrome://resources/js/i18n_template.js"></script> | 136 <script src="chrome://resources/js/i18n_template.js"></script> |
| 137 </body> | 137 </body> |
| 138 </html> | 138 </html> |
| OLD | NEW |