blob: 6a8489fb0c7e1e11b9a175556fa7005de8359ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<!DOCTYPE HTML>
<!--
about:version template page
-->
<html id="t">
<head>
<title i18n-content="title"></title>
<style>
body {
font-family:arial;
background-color:white;
color: black;
margin: 0px;
}
#outer {
text-align: left;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
width: 800px;
}
#inner {
padding-top: 10px;
width: 550px;
}
.label {
font-weight: bold;
text-align: right;
width: 120px;
padding-right: 5px;
font-size: 0.9em;
border-right: 0px solid black;
}
.label:after {
content: ":";
}
#logo {
text-align: right;
float: right;
width: 180px;
margin-left: 40px;
}
#company {
text-align: right;
font-size: 0.7em;
}
#copyright {
text-align: right;
font-size: 0.7em;
}
#name {
}
#useragent {
font-family: monospace;
}
.version {
font-family: monospace;
padding-left: 5px;
}
</style>
</head>
<body>
<div id="outer">
<div id="logo">
<img src="../../app/theme/%DISTRIBUTION%/product_logo.png" />
<div id="company" i18n-content="company"></div>
<div id="copyright" i18n-content="copyright"></div>
</div>
<table id="inner" cellpadding="0" cellspacing="0" border="0">
<tr><td class="label" valign="top" id="name" i18n-content="name"></td>
<td class="version" id="version"><span i18n-content="version"></span> (<span i18n-content="official"></span> <span i18n-content="cl"></span>)</td>
</tr>
<tr><td class="label" valign="top">WebKit</td>
<td class="version" id="webkit_version" i18n-content="webkit_version"></td>
</tr>
<tr><td class="label" valign="top" i18n-content="js_engine"></td>
<td class="version" id="js_version" i18n-content="js_version"></td>
</tr>
<tr><td class="label" valign="top">User Agent</td>
<td class="version" id="useragent" i18n-content="useragent"></td>
</tr>
</table>
</div>
</body>
</html>
|