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

Unified Diff: chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html

Issue 1849283004: [Media Router WebUI] Resolve AX_ARIA_08 failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/test/data/webui/media_router/media_router_elements_browsertest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
diff --git a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
index bcf165003f64d460a96caa10963c91c2abcf8667..370f41fd77967ed891842d2e6c09fbac033b0997 100644
--- a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
+++ b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
@@ -62,7 +62,7 @@
</media-router-header>
<div id="content">
<template is="dom-if" if="[[!computeCastModeListHidden_(currentView_)]]">
- <paper-menu id="cast-mode-list">
+ <paper-menu id="cast-mode-list" role="presentation">
<template is="dom-repeat" id="defaultCastModeList"
items="[[computeDefaultCastModeList_(castModeList)]]">
<paper-item on-tap="onCastModeClick_">
@@ -105,7 +105,7 @@
[[deviceMissingText_]]
</a>
</div>
- <paper-menu id="sink-list"
+ <paper-menu id="sink-list" role="presentation"
hidden$="[[computeSinkListHidden_(sinksToShow_, isUserSearching_)]]">
<template is="dom-repeat" id="sinkList" items="[[sinksToShow_]]">
<paper-item on-tap="onSinkClick_">
@@ -163,7 +163,7 @@
hidden$="[[computeNoMatchesHidden_(searchResultsToShow_, isUserSearching_)]]">
<span>[[searchNoMatchesText_]]</span>
</div>
- <paper-menu id="search-results" selected="0"
+ <paper-menu id="search-results" selected="0" role="presentation"
hidden$="[[computeSearchResultsHidden_(isUserSearching_, searchResultsToShow_)]]">
<template is="dom-repeat" id="searchResults"
items="[[searchResultsToShow_]]">
« no previous file with comments | « no previous file | chrome/test/data/webui/media_router/media_router_elements_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698