summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/about_version.html
blob: b56b3ddafce55e7fdef937a00e966e33f80a8ea6 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<!--
about:version template page
-->

<html id="t">
<head>
<title jscontent="title"></title>
<style type="text/css">
body {
  background-color: Window;
  color: WindowText;
  font: message-box;
}
#outer {
  text-align: left;
}
#name {
  font-weight: bold;
  font-size: 1.2em;
}
#logo {
  float: left;
  padding-right: 20px;
  padding-bottom: 200px;
}
#useragent {
  white-space: nowrap;
  font-face: fixed;
  font-size: 0.8em;
}
</style>
</head>
<body>
<!-- TODO: figure out a way to embed a real image -->
<img id="logo" src="http://www.google.com/intl/en_ALL/images/logo.gif" />
<div id="outer">
<div id="name" jscontent="name"></div>
<div id="version"><span jscontent="version"></span> (<span jscontent="cl"></span>)</div>
<div id="official" jscontent="official"></div>
<div id="company" jscontent="company"></div>
<div id="copyright" jscontent="copyright"></div>
<div id="useragent" jscontent="useragent"></div>
</div>
</body>
</html>