| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 <tr id="variations-section"> | 94 <tr id="variations-section"> |
| 95 <td class="label" i18n-content="variations_name"></td> | 95 <td class="label" i18n-content="variations_name"></td> |
| 96 <td class="version" id="variations-list"></td> | 96 <td class="version" id="variations-list"></td> |
| 97 </tr> | 97 </tr> |
| 98 <if expr="is_android"> | 98 <if expr="is_android"> |
| 99 <tr id="build-id-section"> | 99 <tr id="build-id-section"> |
| 100 <td class="label" i18n-content="build_id_name"></td> | 100 <td class="label" i18n-content="build_id_name"></td> |
| 101 <td class="version" i18n-content="build_id"></td> | 101 <td class="version" i18n-content="build_id"></td> |
| 102 </tr> | 102 </tr> |
| 103 </if> | 103 </if> |
| 104 <if expr="is_win"> |
| 105 <tr id="compiler-section"> |
| 106 <td class="label">Compiler</td> |
| 107 <td class="version" id="compiler" i18n-content="compiler"></td> |
| 108 </tr> |
| 109 </if> |
| 104 </table> | 110 </table> |
| 105 </div> | 111 </div> |
| 106 <script src="chrome://resources/js/i18n_template.js"></script> | 112 <script src="chrome://resources/js/i18n_template.js"></script> |
| 107 </body> | 113 </body> |
| 108 </html> | 114 </html> |
| OLD | NEW |