Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<html>
<head>
<script>
function start () {
const style = document.createElement('style')
document.head.appendChild(style)
const ul = document.createElement('ul')
ul.textContent = '\uFFFD\n'
document.documentElement.appendChild(ul)
style.sheet.insertRule('ul { line-break: anywhere }', (0))
}
window.addEventListener('load', start)
</script>
</head>
</html>