blob: c1a90dbc1cf960552b4a62a311bdac1add7ee5a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
let o0 = document.createElement("span"),
o1 = document.createElement("div");
document.documentElement.appendChild(o0);
o0.appendChild(o1);
o0.animate([{"filter": "invert(96%)"}], 100);
o1.animate([{"mask": "linear-gradient(red,blue)", "transform": "none"}], 100);
requestAnimationFrame(() => {
document.documentElement.classList.remove("reftest-wait");
});
};
</script>
</head>
</html>
|