| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 </td> | 69 </td> |
| 70 </tr> | 70 </tr> |
| 71 </if> | 71 </if> |
| 72 <if expr="chromeos"> | 72 <if expr="chromeos"> |
| 73 <tr> | 73 <tr> |
| 74 <td class="label" i18n-content="platform"></td> | 74 <td class="label" i18n-content="platform"></td> |
| 75 <td class="version" id="os_type"> | 75 <td class="version" id="os_type"> |
| 76 <span id="os_version"></span> | 76 <span id="os_version"></span> |
| 77 </td> | 77 </td> |
| 78 </tr> | 78 </tr> |
| 79 <tr> |
| 80 <td class="label" i18n-content="firmware_version"></td> |
| 81 <td class="version"> |
| 82 <span id="firmware_version"></span> |
| 83 </td> |
| 84 </tr> |
| 79 <tr id="customization_id_holder" hidden> | 85 <tr id="customization_id_holder" hidden> |
| 80 <td class="label" i18n-content="customization_id"></td> | 86 <td class="label" i18n-content="customization_id"></td> |
| 81 <td class="version"> | 87 <td class="version"> |
| 82 <span id="customization_id"></span> | 88 <span id="customization_id"></span> |
| 83 </td> | 89 </td> |
| 84 </tr> | 90 </tr> |
| 85 <tr id="arc_holder"><td class="label" i18n-content="arc_label"></td> | 91 <tr id="arc_holder"><td class="label" i18n-content="arc_label"></td> |
| 86 <td class="version"> | 92 <td class="version"> |
| 87 <span id="arc_version"></span> | 93 <span id="arc_version"></span> |
| 88 </td> | 94 </td> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 <tr id="compiler-section"> | 129 <tr id="compiler-section"> |
| 124 <td class="label">Compiler</td> | 130 <td class="label">Compiler</td> |
| 125 <td class="version" id="compiler" i18n-content="compiler"></td> | 131 <td class="version" id="compiler" i18n-content="compiler"></td> |
| 126 </tr> | 132 </tr> |
| 127 </if> | 133 </if> |
| 128 </table> | 134 </table> |
| 129 </div> | 135 </div> |
| 130 <script src="chrome://resources/js/i18n_template.js"></script> | 136 <script src="chrome://resources/js/i18n_template.js"></script> |
| 131 </body> | 137 </body> |
| 132 </html> | 138 </html> |
| OLD | NEW |