Revision 5b272d79f98537bdf1f3cf69a0142cdeb6e9f3ba authored by Simon Sapin on 08 April 2018, 06:53:12 UTC, committed by Simon Sapin on 08 April 2018, 06:53:12 UTC
1 parent f161804
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");
});
</script>
back to top