blob: 8a7c9ab6d0b2dcade77af9b6b7a4a1272fa08e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html class="test-wait">
<body>
<div aria-owns="id1"></div>
<video>
<mark>
<span id='id1'></span>
</mark>
</video>
</body>
<script>
window.onload = () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.style.display = 'none';
document.documentElement.className = '';
});
});
}
</script>
|