Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: chrome/browser/resources/history/history.html

Issue 11886104: History: Add range navigation control for grouped visits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last edits Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="pp_ifdef('android')"> 5 <if expr="pp_ifdef('android')">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
(...skipping 30 matching lines...) Expand all
41 <header> 41 <header>
42 <h1 i18n-content="history"></h1> 42 <h1 i18n-content="history"></h1>
43 <form id="search-form" method="post" action="" 43 <form id="search-form" method="post" action=""
44 class="search-field-container"> 44 class="search-field-container">
45 <input type="search" id="search-field"> 45 <input type="search" id="search-field">
46 <input type="submit" id="search-button" i18n-values="value:searchbutton"> 46 <input type="submit" id="search-button" i18n-values="value:searchbutton">
47 </form> 47 </form>
48 </header> 48 </header>
49 49
50 <div id="filter-controls" hidden> 50 <div id="filter-controls" hidden>
51 <button id="range-today" i18n-content="rangetoday" disabled>
52 </button>
53 <button id="range-previous" disabled>◀</button>
54 <button id="range-next" disabled>▶</button>
51 <div id="display-filter-controls"> 55 <div id="display-filter-controls">
52 <label> 56 <label>
53 <input type="checkbox" id="display-filter-sites" name="display-filter"> 57 <input type="checkbox" id="display-filter-sites" name="display-filter">
54 <span i18n-content="displayfiltersites"></span> 58 <span i18n-content="displayfiltersites"></span>
55 </label> 59 </label>
56 <label> 60 <label>
57 <span i18n-content="rangelabel"></span> 61 <span i18n-content="rangelabel"></span>
58 <select id="timeframe-filter"> 62 <select id="timeframe-filter">
59 <option i18n-content="rangealltime" value="0"></option> 63 <option i18n-content="rangealltime" value="0"></option>
60 <option i18n-content="rangeweek" value="1"></option> 64 <option i18n-content="rangeweek" value="1"></option>
(...skipping 28 matching lines...) Expand all
89 93
90 <menu id="action-menu"> 94 <menu id="action-menu">
91 <button id="more-from-site" i18n-content="moreFromSite"></button> 95 <button id="more-from-site" i18n-content="moreFromSite"></button>
92 <button id="remove-visit" i18n-content="removeFromHistory"></button> 96 <button id="remove-visit" i18n-content="removeFromHistory"></button>
93 </menu> 97 </menu>
94 98
95 <script src="chrome://history-frame/strings.js"></script> 99 <script src="chrome://history-frame/strings.js"></script>
96 <script src="chrome://resources/js/i18n_template2.js"></script> 100 <script src="chrome://resources/js/i18n_template2.js"></script>
97 </body> 101 </body>
98 </html> 102 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698