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

Side by Side Diff: third_party/WebKit/LayoutTests/media/controls/volumechange-stopimmediatepropagation-expected.html

Issue 2477203002: Media Controls: delegate 'volumechange' and 'focusin' handling to an EventListener. (Closed)
Patch Set: moar tests 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script src="../media-file.js"></script>
4 <div>
5 <audio controls muted></audio>
6 </div>
7 <div>
8 <video controls muted></video>
9 </div>
10 <div>
11 <audio controls></audio> <!-- should be muted -->
12 </div>
13 <div>
14 <video controls></video> <!-- should be muted -->
15 </div>
16 <script>
17 var audios = document.querySelectorAll('audio');
18 for (var i = 0; i < audios.length; ++i)
19 audios[i].src = findMediaFile('audio', '../content/test');
foolip 2016/11/14 16:07:37 I think this'll be fine, but make sure to run the
mlamouri (slow - plz ping) 2016/11/14 23:46:29 Ack. Ran 100 times both tests locally and no flake
20
21 var videos = document.querySelectorAll('video');
22 for (var i = 0; i < videos.length; ++i)
23 videos[i].src = findMediaFile('video', '../content/test');
24 </script>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698