blob: 6b358bd4e7f3eb2e15d18246ec5722860a903a47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<title>Reference for infinite duration animation</title>
<style>
#notes {
position: absolute;
left: 0px;
top: 100px;
}
body {
background: white;
}
</style>
<body>
<p id="notes">
This test creates an infinite duration animations, which should be stuck at
a progress of 0. If any blue pixels appear in the screenshot, the test
fails.
</p>
</body>
|