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

Side by Side Diff: ui/file_manager/audio_player/elements/repeat_button.html

Issue 2491213002: Make the repeat button accessible by keyboard. (Closed)
Patch Set: Fix duplicated ripple effect. Created 4 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 unified diff | Download patch
OLDNEW
1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
2 -- Use of this source code is governed by a BSD-style license that can be 2 -- Use of this source code is governed by a BSD-style license that can be
3 -- found in the LICENSE file. 3 -- found in the LICENSE file.
4 --> 4 -->
5 5
6 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
7 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/for eground/elements/files_toggle_ripple.html"> 7 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/for eground/elements/files_icon_button.html">
8 8
9 <dom-module id="repeat-button"> 9 <dom-module id="repeat-button">
10 <link rel="import" type="css" href="repeat_button.css"> 10 <link rel="import" type="css" href="repeat_button.css">
11 <template> 11 <template>
12 <files-toggle-ripple activated="[[isActive(repeatMode)]]" class$="{{repeatMo de}}"></files-toggle-ripple> 12 <files-icon-button active="[[isActive(repeatMode)]]"
13 repeat-mode$="{{repeatMode}}" toggles>
fukino 2016/11/10 08:30:19 What is the intention to change "class$=" to "repe
yamaguchi 2016/11/10 08:43:16 To avoid that keyboard focus indicator disappears
fukino 2016/11/10 09:28:32 I see. Since the repeatMode's refrectToAttribute i
14 </files-icon-button>
13 </template> 15 </template>
14 16
15 <script src="repeat_button.js"></script> 17 <script src="repeat_button.js"></script>
16 </dom-module> 18 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698