summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-offlineaudiocontext-interface/current-time-block-size.html
blob: ee976f7f72aa2530754c115fe7039f17c058f744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title>Test currentTime at completion of OfflineAudioContext rendering</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(function() {
  // sampleRate is a power of two so that time can be represented exactly
  // in double currentTime.
  var context = new OfflineAudioContext(1, 1, 65536);
  return context.startRendering().
    then(function(buffer) {
      assert_equals(buffer.length, 1, "buffer length");
      assert_equals(context.currentTime, 128 / context.sampleRate,
                    "currentTime at completion");
    });
});
</script>