blob: d2aa54bc6af2ec8ec9c9bddefa266ca480f69d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html class="reftest-wait">
<audio id=a src=1850453.flac controls></audio>
<script>
a.play();
a.onplaying = function() {
a.currentTime = 0.5;
}
a.onseeked = function () {
document.documentElement.removeAttribute("class")
}
</script>
</html>
|