mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
29 lines
736 B
HTML
29 lines
736 B
HTML
<!doctype html>
|
|
<title>Historical Web Audio API features</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
[
|
|
"webkitAudioContext",
|
|
"webkitAudioPannerNode",
|
|
"webkitOfflineAudioContext",
|
|
].forEach(name => {
|
|
test(function() {
|
|
assert_false(name in window);
|
|
}, name + " interface should not exist");
|
|
});
|
|
|
|
[
|
|
"dopplerFactor",
|
|
"speedOfSound",
|
|
"setVelocity"
|
|
].forEach(name => {
|
|
test(function() {
|
|
assert_false(name in AudioListener.prototype);
|
|
}, name + " member should not exist on the AudioListener.");
|
|
});
|
|
|
|
test(function() {
|
|
assert_false("setVelocity" in PannerNode.prototype);
|
|
}, "setVelocity should not exist on PannerNodes.");
|
|
</script>
|