12 lines
298 B
HTML
12 lines
298 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<video id=a src="1905234.webm" controls autoplay></audio>
|
|
<script>
|
|
a.onloadedmetadata = function() {
|
|
a.play();
|
|
}
|
|
a.onerror = a.onended = a.ontimeupdate = function() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</html>
|