Revision 30b74c46f1ec345637ab20edcdd3fdf9d5a0aa37 authored by Jakub Vrana on 14 December 2018, 11:04:45 UTC, committed by Philip Jägenstedt on 19 December 2018, 15:38:42 UTC
Bug: 739170, 913180
Change-Id: I01391891d89aeb55e387059ed4c4a4b92c6dcd7b
1 parent 712c9f2
Raw File
historical.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>
back to top