Bug 19305 - HTML5 <audio>: playback past 'end' position
Summary: HTML5 <audio>: playback past 'end' position
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 525.x (Safari 3.1)
Hardware: PC Windows XP
: P2 Normal
Assignee: Nobody
URL:
Keywords: HasReduction, InRadar
Depends on:
Blocks:
 
Reported: 2008-05-29 05:50 PDT by Markus Walther
Modified: 2008-05-30 11:49 PDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Markus Walther 2008-05-29 05:50:11 PDT
Unlike with the 'start' attribute, 'end' position setting seems not to work accurately:
audio playback stops approx. 0.4 seconds later, and 'end' values <= 'start' still result in audible sound for approx. 0.4 seconds.

Example:

<script>
var audio = new Audio("sample.wav");
audio.start= 0.873;
audio.end = 1.0;
audio.play();
</script>
Comment 1 Mark Rowe (bdash) 2008-05-30 11:49:17 PDT
<rdar://problem/5975182>