chromium/third_party/blink/web_tests/fast/dom/StyleSheet/removed-media-rule-deleted-parent-crash.html

<html>
<head>
<script src="../../../resources/gc.js"></script>
<script>
if (window.testRunner)
{
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
}

function runTest()
{
    style = document.createElement('style');
    style.textContent = '@media all { body { color: red } }';
    document.head.appendChild(style);
    ruleList = style.sheet.cssRules;
 
    document.styleSheets[0].cssRules[0].deleteRule(0);
    document.head.removeChild(style);
    
    gc();

    if (!ruleList[0].parentStyleSheet)
        document.getElementById('result').innerHTML = "PASS";
    if (window.testRunner)
        testRunner.notifyDone();
}

</script>
</head>
<body onload="runTest()">
<div id="result"></div>
</body>
</html>