forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic IDL test for audio-output spec
- Loading branch information
1 parent
e45b910
commit 9364565
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset=utf-8> | ||
<title>IDL check of sinkId on HTMLMediaElement</title> | ||
<link rel="author" title="Dominique Hazael-Massieux" href="mailto:[email protected]"/> | ||
<link rel="help" href="https://www.w3.org/TR/audio-output/#htmlmediaelement-extensions"> | ||
</head> | ||
<body> | ||
|
||
<h1 class="instructions">Description</h1> | ||
<p class="instructions">This test verifies the availability of <code>sinkId</code>/<code>setSinkId</code> on the HTMLMediaElement interface.</p> | ||
<div id='log'></div> | ||
<script src=/resources/testharness.js></script> | ||
<script src=/resources/testharnessreport.js></script> | ||
<script src=/resources/WebIDLParser.js></script> | ||
<script src=/resources/idlharness.js></script> | ||
|
||
<!-- --> | ||
<script type="text/plain" id='untested_idl'> | ||
|
||
interface HTMLMediaElement { | ||
}; | ||
|
||
interface HTMLAudioElement : HTMLMediaElement { | ||
}; | ||
|
||
interface HTMLVideoElement : HTMLMediaElement { | ||
}; | ||
</script> | ||
<script type="text/plain" id="idl"> | ||
// The IDL is copied from the 15 December 2016 draft. | ||
partial interface HTMLMediaElement { | ||
readonly attribute DOMString sinkId; | ||
Promise<void> setSinkId(DOMString sinkId); | ||
};</script> | ||
<script> | ||
(function() { | ||
var idl_array = new IdlArray(); | ||
idl_array.add_untested_idls(document.getElementById('untested_idl').textContent); | ||
idl_array.add_idls(document.getElementById('idl').textContent); | ||
window.audio = document.createElement("audio"); | ||
window.video = document.createElement("video"); | ||
idl_array.add_objects({"HTMLAudioElement": ["audio"], "HTMLVideoElement": ["video"]}); | ||
idl_array.test(); | ||
done(); | ||
})(); | ||
</script> | ||
</body> | ||
</html> |