mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
317 B
HTML
18 lines
317 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
var a = document.getElementById("a");
|
||
|
a.play();
|
||
|
a.onplaying = function () { document.documentElement.className = ""; }
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<video id="a" src="cors.webm" crossorigin onloadedmetadata="boom();">
|
||
|
</body>
|
||
|
</html>
|