summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/history.html
blob: b33ce38882b707d489d0bc21699e9c6f263515e0 (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
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="icon" href="../../app/theme/history_favicon.png">

<link rel="stylesheet" href="chrome://resources/css/menu.css">
<link rel="stylesheet" href="shared/css/button.css">
<link rel="stylesheet" href="shared/css/checkbox.css">

<script src="chrome://resources/js/event_tracker.js"></script>
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/command.js"></script>
<script src="chrome://resources/js/cr/ui/menu_item.js"></script>
<script src="chrome://resources/js/cr/ui/menu.js"></script>
<script src="chrome://resources/js/cr/ui/position_util.js"></script>
<script src="chrome://resources/js/cr/ui/menu_button.js"></script>

<script src="chrome://resources/js/local_strings.js"></script>

<script src="chrome://history/history.js"></script>
<script src="chrome://history/strings.js"></script>

<link rel="stylesheet" href="shared/css/chrome_shared.css">
<link rel="stylesheet" href="old_webui.css">
<link rel="stylesheet" href="history.css">
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div class="header">
  <a id="history-section" href="">
    <img src="shared/images/history_section.png"
         width="67" height="67" class="logo" border="0"></a>
  <form id="search-form" method="post" action="" class="form">
    <input type="text" name="term" id="term">
    <input type="submit" name="submit" i18n-values="value:searchbutton">
  </form>
</div>
<div class="main">
  <div id="results-summary"></div>
  <div id="editing-controls">
    <button id="clear-browsing-data" i18n-content="clearallhistory"></button>
    <button id="remove-selected"
            disabled="disabled"
            i18n-content="removeselected"></button>
  </div>
  <div id="results-display"></div>
  <div id="results-pagination"></div>
</div>

<menu id="action-menu">
  <button id="more-from-site" i18n-content="moreFromSite"></button>
  <button id="remove-page" i18n-content="removeFromHistory"></button>
</menu>

<script src="chrome://resources/js/i18n_template.js"></script>
<script src="chrome://resources/js/i18n_process.js"></script>
</body>
</html>