mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
49
dom/media/webaudio/test/test_AudioParamDevtoolsAPI.html
Normal file
49
dom/media/webaudio/test/test_AudioParamDevtoolsAPI.html
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test the devtool AudioParam API</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
function checkIdAndName(node, name) {
|
||||
is(SpecialPowers.getPrivilegedProps(node, "id"),
|
||||
SpecialPowers.getPrivilegedProps(node[name], "parentNodeId"),
|
||||
"The parent id should be correct");
|
||||
is(SpecialPowers.getPrivilegedProps(node[name], "name"), name,
|
||||
"The name of the AudioParam should be correct.");
|
||||
}
|
||||
|
||||
var ac = new AudioContext(),
|
||||
gain = ac.createGain(),
|
||||
osc = ac.createOscillator(),
|
||||
del = ac.createDelay(),
|
||||
source = ac.createBufferSource(),
|
||||
stereoPanner = ac.createStereoPanner(),
|
||||
comp = ac.createDynamicsCompressor(),
|
||||
biquad = ac.createBiquadFilter();
|
||||
|
||||
checkIdAndName(gain, "gain");
|
||||
checkIdAndName(osc, "frequency");
|
||||
checkIdAndName(osc, "detune");
|
||||
checkIdAndName(del, "delayTime");
|
||||
checkIdAndName(source, "playbackRate");
|
||||
checkIdAndName(source, "detune");
|
||||
checkIdAndName(stereoPanner, "pan");
|
||||
checkIdAndName(comp, "threshold");
|
||||
checkIdAndName(comp, "knee");
|
||||
checkIdAndName(comp, "ratio");
|
||||
checkIdAndName(comp, "attack");
|
||||
checkIdAndName(comp, "release");
|
||||
checkIdAndName(biquad, "frequency");
|
||||
checkIdAndName(biquad, "detune");
|
||||
checkIdAndName(biquad, "Q");
|
||||
checkIdAndName(biquad, "gain");
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue