summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1402472.html
blob: e2842a928bdf044d19f990b4f74cec7ae3c3c04a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<style>
* { display: contents; }
</style>
<script>
a = document.createElement('map')
document.documentElement.appendChild(a)
a.appendChild(document.head)
document.documentElement.getBoundingClientRect()
document.designMode = "on"
document.designMode = "off"
a.appendChild(document.createElement('frame'))
document.designMode = "on"
</script>