Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/format-block-selection-containing-non-editable-list.html - WPT Dashboard Interop Dashboard
<!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>