blob: 36627dbea6386b147d77ef6910fd132090eec8eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<link rel="help" href="https://www.w3.org/TR/scroll-animations-1/#viewtimeline-interface">
<html>
<!-- crbug.com/1470522 --->
<script>
function main() {
var b = document.createElement("br");
document.body.append(b);
new ViewTimeline({ subject: b });
}
</script>
<body onload=main()>
</body>
</html>
|