blob: 325236b2a77e8fb9406a4fcb7972b3f0f4a6fcf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html class="reftest-wait">
<style>
@keyframes anim {
from { background-color: rgb(255, 255, 255); }
to { background-color: rgb(255, 255, 255); }
}
#target::before {
content: 'initial';
background-color: rgb(0, 0, 0);
height: 100px;
width: 100px;
position: absolute;
}
#target.hover::before{
content: '';
animation: anim 100s steps(1, start);
}
</style>
<div id="target"></div>
<script>
window.addEventListener("load", () => {
target.className = 'hover';
target.addEventListener('animationstart', () => {
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
</html>
|