summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1399546.html
blob: 883ee9fd656b7ef3a04407b6be0f12621aa3b506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<script>
var d = document
var de = d.documentElement
de.appendChild(d.createElement("x"))
de.appendChild(d.createElement("x"))
de.appendChild(d.createElement("x"))
de.appendChild(d.createElement("body"))

// Should be enough of them in order for styling to be paralelizable.
for (var i = 0; i < 100; ++i)
  de.appendChild(d.createElement("x"))

var t = d.createElement("x")
de.appendChild(t)
t.appendChild(d.createElement("table"))
</script>