Bug 19305
| Summary: | HTML5 <audio>: playback past 'end' position | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Markus Walther <walther> |
| Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
| Status: | UNCONFIRMED | ||
| Severity: | Normal | Keywords: | HasReduction, InRadar |
| Priority: | P2 | ||
| Version: | 525.x (Safari 3.1) | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
Markus Walther
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>
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Mark Rowe (bdash)
<rdar://problem/5975182>