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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | 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 2bcc1c457452acbb37e6483864ec1e0878057616..5afff1261ac0ec81f5c06df9b657a6c92b10489d 100644
--- a/chrome/browser/resources/history/history.html
+++ b/chrome/browser/resources/history/history.html
@@ -77,14 +77,17 @@
<header>
<h1 i18n-content="history"></h1>
<div id="search-form" class="search-field-container">
- <input type="search" id="search-field" required>
- <input type="submit" id="search-button" i18n-values="value:searchButton">
+ <input type="search" id="search-field"
+ i18n-values="aria-label:searchButton" required>
+ <input type="submit" id="search-button"
+ i18n-values="value:searchButton">
</div>
<div id="filter-controls" hidden>
- <button id="range-today" i18n-content="rangeToday" disabled></button>
- <button id="range-previous" i18n-values="alt:rangePrevious" disabled>
- </button>
- <button id="range-next" i18n-values="alt:rangeNext" disabled>
+ <button id="range-today" i18n-content="rangeToday"
+ i18n-values="aria-label:rangeToday" disabled></button>
+ <button id="range-previous" i18n-values="aria-label:rangePrevious"
+ disabled></button>
+ <button id="range-next" i18n-values="aria-label:rangeNext" disabled>
</button>
<div id="display-filter-controls">
<div class="display-filter-button">
@@ -118,7 +121,8 @@
</if>
<div id="top-container">
<div id="editing-controls">
- <button id="clear-browsing-data" i18n-content="clearAllHistory"></button>
+ <button id="clear-browsing-data" i18n-content="clearAllHistory">
+ </button>
<button id="remove-selected" disabled="disabled"
i18n-content="removeSelected"></button>
</div>
« 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