chromium/third_party/blink/web_tests/external/wpt/editing/crashtests/format-block-selection-containing-non-editable-list.html

<!DOCTYPE html>
<html>
<head>
    <script>
      window.addEventListener('load', () => {
        document.execCommand('selectAll', false, null)
        document.execCommand('formatBlock', false, 'h1')
      })
    </script>
</head>
<body>
<main contenteditable='true'>
    <li></li>
    <ol contenteditable='false'>
    </ol>
</main>
</body>
</html>