| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 <span id="os_version" i18n-content="os_version"></span> | 64 <span id="os_version" i18n-content="os_version"></span> |
| 65 </td> | 65 </td> |
| 66 </if> | 66 </if> |
| 67 <if expr="chromeos"> | 67 <if expr="chromeos"> |
| 68 <tr><td class="label" i18n-content="platform"></td> | 68 <tr><td class="label" i18n-content="platform"></td> |
| 69 <td class="version" id="os_type"> | 69 <td class="version" id="os_type"> |
| 70 <span id="os_version" i18n-content="os_version"></span> | 70 <span id="os_version" i18n-content="os_version"></span> |
| 71 </td> | 71 </td> |
| 72 </if> | 72 </if> |
| 73 </tr> | 73 </tr> |
| 74 <tr id="arc_holder"><td class="label" i18n-content="arc_label"></td> |
| 75 <td class="version"> |
| 76 <span id="arc_version"></span> |
| 77 </td> |
| 78 </tr> |
| 74 <if expr="not is_ios"> | 79 <if expr="not is_ios"> |
| 75 <tr><td class="label">Blink</td> | 80 <tr><td class="label">Blink</td> |
| 76 <td class="version" id="blink_version" i18n-content="blink_version"></
td> | 81 <td class="version" id="blink_version" i18n-content="blink_version"></
td> |
| 77 </tr> | 82 </tr> |
| 78 <tr><td class="label">JavaScript</td> | 83 <tr><td class="label">JavaScript</td> |
| 79 <td class="version" id="js_engine"> | 84 <td class="version" id="js_engine"> |
| 80 <span i18n-content="js_engine"></span> | 85 <span i18n-content="js_engine"></span> |
| 81 <span i18n-content="js_version"></span> | 86 <span i18n-content="js_version"></span> |
| 82 </td> | 87 </td> |
| 83 </tr> | 88 </tr> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 <tr id="compiler-section"> | 120 <tr id="compiler-section"> |
| 116 <td class="label">Compiler</td> | 121 <td class="label">Compiler</td> |
| 117 <td class="version" id="compiler" i18n-content="compiler"></td> | 122 <td class="version" id="compiler" i18n-content="compiler"></td> |
| 118 </tr> | 123 </tr> |
| 119 </if> | 124 </if> |
| 120 </table> | 125 </table> |
| 121 </div> | 126 </div> |
| 122 <script src="chrome://resources/js/i18n_template.js"></script> | 127 <script src="chrome://resources/js/i18n_template.js"></script> |
| 123 </body> | 128 </body> |
| 124 </html> | 129 </html> |
| OLD | NEW |