gecko-dev/layout/style/crashtests/1616433.html
Erik Nordin 5c05e8e03f Bug 1617302 - Temporarily disallow duplicate style sheets r=emilio
* Disallow duplicate style sheets to unblock fuzzers until this is handled properly.

Differential Revision: https://phabricator.services.mozilla.com/D63739

--HG--
extra : moz-landing-system : lando
2020-02-24 21:50:53 +00:00

9 lines
330 B
HTML

<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>