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

Unified Diff: chrome/browser/resources/history/history.html

Issue 707123002: history: announce search/time ranges. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fix Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/history/history.html
diff --git a/chrome/browser/resources/history/history.html b/chrome/browser/resources/history/history.html
index bbe5546a59441059698732fd31edd0183ee09a42..e23d5f0fd30ba408aacc633463cc46982e472ecd 100644
--- a/chrome/browser/resources/history/history.html
+++ b/chrome/browser/resources/history/history.html
@@ -81,7 +81,7 @@
<input type="search" id="search-field"
i18n-values="aria-label:searchButton">
<input type="submit" id="search-button"
- i18n-values="value:searchButton">
+ i18n-values="value:searchButton" aria-controls="results-header">
</div>
<div id="filter-controls" hidden>
<div id="range-controls">
@@ -94,11 +94,14 @@
</div>
<div id="timeframe-controls">
<input type="radio" name="timeframe-filter" value="0" checked
- i18n-values="aria-label:rangeAllTime">
+ i18n-values="aria-label:rangeAllTime"
+ aria-controls="results-header">
<input type="radio" name="timeframe-filter" value="1"
- i18n-values="aria-label:rangeWeek">
+ i18n-values="aria-label:rangeWeek"
+ aria-controls="results-header">
<input type="radio" name="timeframe-filter" value="2"
- i18n-values="aria-label:rangeMonth">
+ i18n-values="aria-label:rangeMonth"
+ aria-controls="results-header">
</div>
</div>
</header>
@@ -115,7 +118,9 @@
<div id="notification-bar" hidden></div>
</div>
- <div id="results-display"></div>
+ <div id="results-display">
+ <h3 id="results-header" aria-live="polite"></h3>
+ </div>
<div id="loading-spinner" hidden>
<span id="loading">
<div id="spinner" class="inline-spinner"></div>
« 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