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

Side by Side Diff: ui/file_manager/video_player/video_player.html

Issue 1415953006: Fix accessibility issues in AudioPlayer and VideoPlayer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix query for repeat button. Created 5 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
« no previous file with comments | « ui/file_manager/video_player/js/video_player.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 -- Copyright 2014 The Chromium Authors. All rights reserved. 2 -- Copyright 2014 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <title>#xFEFF;</title> 9 <title>#xFEFF;</title>
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> 11 <link rel="stylesheet" type="text/css" href="css/media_controls.css">
12 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 12 <link rel="stylesheet" href="chrome://resources/css/menu.css">
13 13
14 <link rel="stylesheet" type="text/css" href="css/video_player.css"> 14 <link rel="stylesheet" type="text/css" href="css/video_player.css">
15 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> 15 <link rel="stylesheet" type="text/css" href="css/arrow_box.css">
16 <link rel="stylesheet" type="text/css" href="css/cast_menu.css"> 16 <link rel="stylesheet" type="text/css" href="css/cast_menu.css">
17 17
18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-slider/paper-sl ider.html"> 18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-slider/paper-sl ider.html">
19 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/f oreground/elements/files_icon_button.html">
19 20
20 <style is="custom-style"> 21 <style is="custom-style">
21 paper-slider { 22 paper-slider {
22 --paper-slider-knob-color: rgb(64, 138, 241); 23 --paper-slider-knob-color: rgb(64, 138, 241);
23 --paper-slider-active-color: rgb(66, 133, 244); 24 --paper-slider-active-color: rgb(66, 133, 244);
24 } 25 }
25 </style> 26 </style>
26 27
27 <script src="js/video_player_scripts.js"></script> 28 <script src="js/video_player_scripts.js"></script>
28 </head> 29 </head>
(...skipping 21 matching lines...) Expand all
50 <div class="arrow left tool"><div></div></div> 51 <div class="arrow left tool"><div></div></div>
51 <div class="arrow-spacer"></div> 52 <div class="arrow-spacer"></div>
52 <div class="arrow right tool"><div></div></div> 53 <div class="arrow right tool"><div></div></div>
53 </div> 54 </div>
54 <div id="error-wrapper"> 55 <div id="error-wrapper">
55 <div id="error"></div> 56 <div id="error"></div>
56 </div> 57 </div>
57 </div> 58 </div>
58 </body> 59 </body>
59 </html> 60 </html>
OLDNEW
« no previous file with comments | « ui/file_manager/video_player/js/video_player.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698