blob: a9ba8a9f2e7f842cfac1711fd18fcbcd38deb10d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script type="text/javascript">
function doTest() {
var video = document.getElementById("v1");
video.src = "vp9hdr2020.webm";
video.preload = "metadata";
video.addEventListener("loadeddata", function() {
document.documentElement.removeAttribute('class');
});
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<video id="v1" style="position:absolute; left:0; top:0; filter:hue-rotate(90deg);"></video>
<script>
//doTest();
</script>
</body>
</html>
|