mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02:00
17 lines
553 B
HTML
17 lines
553 B
HTML
<!DOCTYPE html>
|
|
<meta name="fuzzy" content="maxDifference=0-2;totalPixels=0-312210">
|
|
<html class="reftest-wait">
|
|
<video id="video" src="../../Assets/test-webm.webm"></video>
|
|
<script>
|
|
addEventListener('load', () => {
|
|
if (video.readyState >= HTMLMediaElement.HAVE_CURRENT_DATA) {
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
return;
|
|
}
|
|
video.addEventListener('loadeddata', () => {
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
});
|
|
});
|
|
</script>
|
|
</html>
|