blob: 21ce88ed19dfc2f77a330f6370f727b193563427 (
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
|
<!DOCTYPE html>
<html i18n-values="dir:textdirection;" id="uber">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="uber_frame.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/ui/focus_manager.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://uber-frame/uber_frame.js"></script>
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<h1 i18n-content="shortProductName"></h1>
<ul>
<li i18n-values="controls:historyHost;override:overridesHistory">
<button class="custom-appearance"
i18n-content="historyDisplayName"></button>
</li>
<li i18n-values="controls:extensionsHost">
<button class="custom-appearance"
i18n-content="extensionsDisplayName"></button>
</li>
<li i18n-values="controls:settingsHost">
<button class="custom-appearance"
i18n-content="settingsDisplayName"></button>
</li>
<li id="helpNavItem" i18n-values="controls:helpHost">
<button class="custom-appearance"
i18n-content="helpDisplayName"></button>
</li>
</ul>
<script src="chrome://uber-frame/strings.js"></script>
<script src="chrome://resources/js/i18n_template2.js"></script>
</body>
</html>
|