| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 <tr> | 62 <tr> |
| 63 <td class="label" i18n-content="os_name"></td> | 63 <td class="label" i18n-content="os_name"></td> |
| 64 <td class="version" id="os_type"> | 64 <td class="version" id="os_type"> |
| 65 <span i18n-content="os_type"></span> | 65 <span i18n-content="os_type"></span> |
| 66 <if expr="is_android"> | 66 <if expr="is_android"> |
| 67 <span i18n-content="os_version"></span> | 67 <span i18n-content="os_version"></span> |
| 68 </if> | 68 </if> |
| 69 </td> | 69 </td> |
| 70 </tr> | 70 </tr> |
| 71 </if> | 71 </if> |
| 72 <if expr="is_android"> |
| 73 <tr> |
| 74 <td class="label" i18n-content="gms_name"></td> |
| 75 <td class="version" id="gms_version"> |
| 76 <span i18n-content="gms_version"></span> |
| 77 </td> |
| 78 </tr> |
| 79 </if> |
| 72 <if expr="chromeos"> | 80 <if expr="chromeos"> |
| 73 <tr> | 81 <tr> |
| 74 <td class="label" i18n-content="platform"></td> | 82 <td class="label" i18n-content="platform"></td> |
| 75 <td class="version" id="os_type"> | 83 <td class="version" id="os_type"> |
| 76 <span id="os_version"></span> | 84 <span id="os_version"></span> |
| 77 </td> | 85 </td> |
| 78 </tr> | 86 </tr> |
| 79 <tr> | 87 <tr> |
| 80 <td class="label" i18n-content="firmware_version"></td> | 88 <td class="label" i18n-content="firmware_version"></td> |
| 81 <td class="version"> | 89 <td class="version"> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 <tr id="compiler-section"> | 137 <tr id="compiler-section"> |
| 130 <td class="label">Compiler</td> | 138 <td class="label">Compiler</td> |
| 131 <td class="version" id="compiler" i18n-content="compiler"></td> | 139 <td class="version" id="compiler" i18n-content="compiler"></td> |
| 132 </tr> | 140 </tr> |
| 133 </if> | 141 </if> |
| 134 </table> | 142 </table> |
| 135 </div> | 143 </div> |
| 136 <script src="chrome://resources/js/i18n_template.js"></script> | 144 <script src="chrome://resources/js/i18n_template.js"></script> |
| 137 </body> | 145 </body> |
| 138 </html> | 146 </html> |
| OLD | NEW |