summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1533783.html
blob: 1b793c6f4e50a1acd7b3491ba9260f920e8b1d23 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
  function start() {
    const style = document.createElement('style')
    document.head.appendChild(style)
    const sheet_1 = style.sheet
    document.head.appendChild(style)
    sheet_1.insertRule('@import url()', 0)
  }
  document.addEventListener('DOMContentLoaded', start)
</script>