mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
7bd3227e5d
- Bug 1141282 - DynamicCompressorNode's readonly 'reduction' should be a float. r=ehsan (4685d2cf8) - Bug 1153783 - Implement the `detune` AudioParam for the AudioBufferSourceNode. r=ehsan (8e6b3aca4) - Bug 1134034 - Add a chrome-only parentId and name on AudioParam for devtools. r=ehsan (13815cb94) - Bug 1159290 - "Add final/override to WebAudio classes". r=padenot (83cb303ea) - Bug 1161946 - MainThreadMediaStreamListener should be notified just when the stream is finished - patch 1, r=padenot (c2a126103) - Bug 1161946 - MainThreadMediaStreamListener should be notified just when the stream is finished - patch 2, r=padenot (a1f408cce) - Bug 1161946 - patch 3 - explicit CTOR for NotifyRunnable CLOSED TREE (f304c1ef0) - Bug 974089 - Destroy WebAudio MediaStream when a source finishes. r=padenot (66d7e20df) - Bug 1175510 - Update the AudioBufferSourceNode <=> PannerNode mapping when destroying AudioNodeStream. r=karlt (156741d15) - bug 1179662 uninline DestroyMediaStream overrides so that mStream type need not be complete r=padenot (08d0ebd62) - bug 1179662 specify AudioNode::mStream as AudioNodeStream r=padenot (3aaa3a544) - bug 1179662 handle null AudioNodeStream stream r=padenot (980a8296b) - bug 914392 don't check engine's Node existence in ProcessBlock r=padenot (583176721)
49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test the devtool AudioParam API</title>
|
|
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
Components.utils.import('resource://gre/modules/Services.jsm');
|
|
|
|
function checkIdAndName(node, name) {
|
|
is(node.id, node[name].parentNodeId, "The parent id should be correct");
|
|
is(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>
|