summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1616433.html
blob: 7d7049bec06ff8ace01f3c03eb4357001f0d61fc (plain)
1
2
3
4
5
6
7
8
9
<script>
    window.addEventListener('load', () => {
      var a = document.createElementNS('http://www.w3.org/1999/xhtml', 'div')
      var b = new CSSStyleSheet({'disabled': true})
      var c = a.attachShadow({'mode': 'closed'})
      c.adoptedStyleSheets = [new CSSStyleSheet(), b, b]
      b.disabled = false
    })
</script>