blob: 5d0a3c85fdba94536794c3c8b599673524e504e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
window.onload = function(){
var anim =
document.documentElement.animate([{ "color": "hsla(6e147grad,16%,183.379675555%,0.0210463770007)" }]);
anim.ready.then(() => {
document.documentElement.classList.remove("reftest-wait");
});
};
</script>
</head>
</html>
|