| 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>
|
|
|