OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 | |
3 <!-- | |
4 about:version template page | |
5 --> | |
6 | |
7 <html id="t" i18n-values="dir:textdirection;lang:language"> | |
8 <head> | |
9 <meta charset="utf-8"> | |
10 <title i18n-content="title"></title> | |
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
12 <if expr="is_android"> | |
13 <meta name="viewport" content="width=device-width"> | |
14 </if> | |
15 <link rel="stylesheet" href="chrome://version/about_version.css"> | |
16 <if expr="is_android"> | |
17 <link rel="stylesheet" href="about_version_android.css"> | |
18 </if> | |
19 <script src="chrome://resources/js/cr.js"></script> | |
20 <script src="chrome://resources/js/load_time_data.js"></script> | |
21 <script src="chrome://resources/js/parse_html_subset.js"></script> | |
22 <script src="chrome://resources/js/util.js"></script> | |
23 <script src="chrome://version/version.js"></script> | |
24 <script src="chrome://version/strings.js"></script> | |
25 </head> | |
26 | |
27 <body> | |
28 <div id="outer"> | |
29 <div id="logo"> | |
30 <if expr="enable_themes"> | |
31 <img src="chrome://theme/IDR_PRODUCT_LOGO"> | |
32 </if> | |
33 <if expr="not enable_themes"> | |
34 <img src="../../../components/resources/default_100_percent/%DISTRIBUTIO
N%/product_logo.png"> | |
35 </if> | |
36 <div id="company" i18n-content="company"></div> | |
37 <div id="copyright" i18n-content="copyright"></div> | |
38 </div> | |
39 <table id="inner" cellpadding="0" cellspacing="0" border="0"> | |
40 <tr><td class="label" i18n-content="application_label"></td> | |
41 <td class="version" id="version"> | |
42 <span i18n-content="version"></span> | |
43 (<span i18n-content="official"></span>) | |
44 <span i18n-content="version_modifier"></span> | |
45 <span i18n-content="version_bitsize"></span> | |
46 </td> | |
47 </tr> | |
48 <tr> | |
49 <td class="label" i18n-content="revision"></td> | |
50 <td class="version"> | |
51 <span i18n-content="cl"></span> | |
52 </td> | |
53 </tr> | |
54 <if expr="not chromeos"> | |
55 <tr><td class="label" i18n-content="os_name"></td> | |
56 <td class="version" id="os_type"> | |
57 <span i18n-content="os_type"></span> | |
58 <span id="os_version" i18n-content="os_version"></span> | |
59 </td> | |
60 </if> | |
61 <if expr="chromeos"> | |
62 <tr><td class="label" i18n-content="platform"></td> | |
63 <td class="version" id="os_type"> | |
64 <span id="os_version" i18n-content="os_version"></span> | |
65 </td> | |
66 </if> | |
67 </tr> | |
68 <tr><td class="label">Blink</td> | |
69 <td class="version" id="blink_version" i18n-content="blink_version"></
td> | |
70 </tr> | |
71 <tr><td class="label">JavaScript</td> | |
72 <td class="version" id="js_engine"> | |
73 <span i18n-content="js_engine"></span> | |
74 <span i18n-content="js_version"></span> | |
75 </td> | |
76 </tr> | |
77 <if expr="not is_android"> | |
78 <tr><td class="label" i18n-content="flash_plugin"></td> | |
79 <td class="version" id="flash_version" i18n-content="flash_version"></
td> | |
80 </tr> | |
81 </if> | |
82 <tr><td class="label" i18n-content="user_agent_name"></td> | |
83 <td class="version" id="useragent" i18n-content="useragent"></td> | |
84 </tr> | |
85 <tr><td class="label" i18n-content="command_line_name"></td> | |
86 <td class="version" id="command_line" i18n-content="command_line"></td
> | |
87 </tr> | |
88 <tr><td class="label" i18n-content="executable_path_name"></td> | |
89 <td class="version" id="executable_path" i18n-content="executable_path
"></td> | |
90 </tr> | |
91 <tr><td class="label" i18n-content="profile_path_name"></td> | |
92 <td class="version" id="profile_path" i18n-content="profile_path"></td
> | |
93 </tr> | |
94 <tr id="variations-section"> | |
95 <td class="label" i18n-content="variations_name"></td> | |
96 <td class="version" id="variations-list"></td> | |
97 </tr> | |
98 <if expr="is_android"> | |
99 <tr id="build-id-section"> | |
100 <td class="label" i18n-content="build_id_name"></td> | |
101 <td class="version" i18n-content="build_id"></td> | |
102 </tr> | |
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> | |
110 </table> | |
111 </div> | |
112 <script src="chrome://resources/js/i18n_template.js"></script> | |
113 </body> | |
114 </html> | |
OLD | NEW |