зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
433 B
HTML
18 строки
433 B
HTML
<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>
|