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

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

Issue 2477203002: Media Controls: delegate 'volumechange' and 'focusin' handling to an EventListener. (Closed)
Patch Set: add comment 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 <audio controls></audio>
5 <video controls></video>
6 <script>
7 var audio = document.querySelector('audio')
8 audio.src = findMediaFile('audio', '../content/test');
9 audio.muted = true;
10
11 var video = document.querySelector('video');
12 video.src = findMediaFile('video', '../content/test');
13 video.muted = true;
14 </script>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698