trisquel-icecat/icecat/testing/web-platform/tests/editing/crashtests/justifyfull-selection-containing-non-editable-div-and-everything-styled-white-space-break-space.html

18 lines
430 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
* {
white-space: break-spaces ! important;
}
</style>
<script>
window.addEventListener('load', () => {
document.documentElement.contentEditable = true
document.execCommand('selectAll', false, null)
document.execCommand('justifyFull', false, null)
})
</script>
</head>
<div contenteditable='false'></div>
</html>