summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1383001-2.html
blob: 5fba0184b44e9d83db0688388bb86a237cfc4ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
  a = document.createElement("p")
  document.documentElement.appendChild(a)
  a.animate([])
  document.designMode = 'on'
  document.documentElement.appendChild(document.createElement("div"))
}
</script>
</head>
</html>