blob: aa10ff3ab886097c3be118b4823b1b101a89f7b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<html class="reftest-wait">
<head>
<title>Bug 1239889</title>
</head>
<body>
</body>
<script>
var div = document.createElement('div');
var effect = new KeyframeEffect(div, { opacity: [0, 1] });
requestAnimationFrame(() => {
document.body.appendChild(div);
document.documentElement.classList.remove("reftest-wait");
});
</script>
</html>
|