summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1397398-1.html
blob: 3a55d3740cb38fff873de8f96e9b8a7e695016e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
a = document.createElement("x")
document.documentElement.appendChild(a)
a.animate([{ "filter": "sepia(7)" }], 3000)
b = document.createElement("caption")
a.appendChild(b)
a.style = "display:contents"
//DDBEGIN
b.animate([{ "padding": "912q" }], 1500)
//DDEND
a.animate([{}])
}
</script>
</head>
</html>