summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1461749.html
blob: e29ffa6774a117e0589e468019a386096afd517a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<style>
:last-of-type {
  display: contents;
}
</style>
<script>
function start() {
  o1 = document.createElement('footer')
  o2 = document.createElement('t')
  document.documentElement.appendChild(o1)
  document.documentElement.appendChild(o2)
  o3 = o1.attachShadow({
      mode: "open"
  })
  o2.getClientRects()
  o3.innerHTML = ">"
}
window.addEventListener('load', start)
</script>