historical.html (736B)
1 <!doctype html> 2 <title>Historical Web Audio API features</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <script> 6 [ 7 "webkitAudioContext", 8 "webkitAudioPannerNode", 9 "webkitOfflineAudioContext", 10 ].forEach(name => { 11 test(function() { 12 assert_false(name in window); 13 }, name + " interface should not exist"); 14 }); 15 16 [ 17 "dopplerFactor", 18 "speedOfSound", 19 "setVelocity" 20 ].forEach(name => { 21 test(function() { 22 assert_false(name in AudioListener.prototype); 23 }, name + " member should not exist on the AudioListener."); 24 }); 25 26 test(function() { 27 assert_false("setVelocity" in PannerNode.prototype); 28 }, "setVelocity should not exist on PannerNodes."); 29 </script>