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

Side by Side Diff: LayoutTests/media/audio_output_devices/audio_output_devices-setsinkid.html

Issue 1182243005: Add sinkId/setSinkId() extension to HTMLMediaElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update expected value for public interface/properties tests Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Audio Output Devices</title>
5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script>
7 </head>
8 <body>
9 <video id="testVideo"></video>
10 <script>
11 // Tests that the setSinkId() Promise rejects with a NotSupportedError,
12 // because the functionality has not been implemented yet.
13 promise_test(function() {
14 var video = document.getElementById('testVideo');
15 assert_not_equals(video, null);
16
17 assert_idl_attribute(video, 'setSinkId');
18 assert_equals(typeof video.setSinkId, 'function');
19 assert_idl_attribute(video, 'sinkId');
20 assert_equals(video.sinkId, '');
21
22 return video.setSinkId('').then(function() {
23 assert_unreached('setSinkId() should not be implemented yet!');
24 }, function(error) {
25 assert_equals(error.name, 'NotSupportedError');
26 return Promise.resolve();
27 });
28 }, 'setSinkId() test');
29 </script>
30 </body>
31 </html>
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698