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

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

Issue 513923003: Fix enable a11y tests for History and fix failures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes based on feedback Created 6 years, 3 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
« no previous file with comments | « no previous file | 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="is_android or is_ios"> 5 <if expr="is_android or is_ios">
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/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <div id="overlay" class="overlay" hidden> 70 <div id="overlay" class="overlay" hidden>
71 <include src="alert_overlay.html"> 71 <include src="alert_overlay.html">
72 </div> 72 </div>
73 </if> 73 </if>
74 74
75 <div id="history-page" class="page"> 75 <div id="history-page" class="page">
76 <div id="scrolling-container"> 76 <div id="scrolling-container">
77 <header> 77 <header>
78 <h1 i18n-content="history"></h1> 78 <h1 i18n-content="history"></h1>
79 <div id="search-form" class="search-field-container"> 79 <div id="search-form" class="search-field-container">
80 <input type="search" id="search-field" required> 80 <input type="search" id="search-field"
81 <input type="submit" id="search-button" i18n-values="value:searchButton" > 81 i18n-values="aria-label:searchButton" required>
82 <input type="submit" id="search-button"
83 i18n-values="value:searchButton">
82 </div> 84 </div>
83 <div id="filter-controls" hidden> 85 <div id="filter-controls" hidden>
84 <button id="range-today" i18n-content="rangeToday" disabled></button> 86 <button id="range-today" i18n-content="rangeToday"
85 <button id="range-previous" i18n-values="alt:rangePrevious" disabled> 87 i18n-values="aria-label:rangeToday" disabled></button>
86 </button> 88 <button id="range-previous" i18n-values="aria-label:rangePrevious"
87 <button id="range-next" i18n-values="alt:rangeNext" disabled> 89 disabled></button>
90 <button id="range-next" i18n-values="aria-label:rangeNext" disabled>
88 </button> 91 </button>
89 <div id="display-filter-controls"> 92 <div id="display-filter-controls">
90 <div class="display-filter-button"> 93 <div class="display-filter-button">
91 <label for="timeframe-filter-all"> 94 <label for="timeframe-filter-all">
92 <input id="timeframe-filter-all" type="radio" 95 <input id="timeframe-filter-all" type="radio"
93 name="timeframe-filter" value="0" checked> 96 name="timeframe-filter" value="0" checked>
94 <span i18n-content="rangeAllTime" class="first-button-component"> 97 <span i18n-content="rangeAllTime" class="first-button-component">
95 </span> 98 </span>
96 </label> 99 </label>
97 </div> 100 </div>
(...skipping 13 matching lines...) Expand all
111 </label> 114 </label>
112 </div> 115 </div>
113 </div> 116 </div>
114 </div> 117 </div>
115 </header> 118 </header>
116 <if expr="not is_android"> 119 <if expr="not is_android">
117 <div id="other-devices" class="other-devices"></div> 120 <div id="other-devices" class="other-devices"></div>
118 </if> 121 </if>
119 <div id="top-container"> 122 <div id="top-container">
120 <div id="editing-controls"> 123 <div id="editing-controls">
121 <button id="clear-browsing-data" i18n-content="clearAllHistory"></button > 124 <button id="clear-browsing-data" i18n-content="clearAllHistory">
125 </button>
122 <button id="remove-selected" disabled="disabled" 126 <button id="remove-selected" disabled="disabled"
123 i18n-content="removeSelected"></button> 127 i18n-content="removeSelected"></button>
124 </div> 128 </div>
125 <div id="notification-bar" hidden></div> 129 <div id="notification-bar" hidden></div>
126 </div> 130 </div>
127 131
128 <div id="results-display"></div> 132 <div id="results-display"></div>
129 <div id="loading-spinner" hidden> 133 <div id="loading-spinner" hidden>
130 <span id="loading"> 134 <span id="loading">
131 <div id="spinner" class="inline-spinner"></div> 135 <div id="spinner" class="inline-spinner"></div>
(...skipping 14 matching lines...) Expand all
146 150
147 <menu id="action-menu" hidden> 151 <menu id="action-menu" hidden>
148 <button id="more-from-site" i18n-content="moreFromSite"></button> 152 <button id="more-from-site" i18n-content="moreFromSite"></button>
149 <button id="remove-visit" i18n-content="removeFromHistory"></button> 153 <button id="remove-visit" i18n-content="removeFromHistory"></button>
150 </menu> 154 </menu>
151 155
152 <script src="chrome://history-frame/strings.js"></script> 156 <script src="chrome://history-frame/strings.js"></script>
153 <script src="chrome://resources/js/i18n_template2.js"></script> 157 <script src="chrome://resources/js/i18n_template2.js"></script>
154 </body> 158 </body>
155 </html> 159 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698