summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1397398-2.html
blob: 2c36b13a82e360c749531634daa2edc2895c9380 (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([{ "color": "green" }], 3000)
b = document.createElement("caption")
a.appendChild(b)
a.style = "display:contents"
//DDBEGIN
b.animate([{ "text-indent": "912q" }], 1500)
//DDEND
a.animate([{}])
}
</script>
</head>
</html>