doc_bug_1130901.html 454 B

1234567891011121314151617181920212223
  1. <!-- Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ -->
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8"/>
  7. <title>Web Audio Editor test page</title>
  8. </head>
  9. <body>
  10. <script type="text/javascript;version=1.8">
  11. "use strict";
  12. let ctx = new AudioContext();
  13. ctx.createOscillator.call(ctx);
  14. ctx.createGain.apply(ctx, []);
  15. </script>
  16. </body>
  17. </html>