gecko-dev/layout/base/crashtests/1576972-1.html

24 строки
542 B
HTML

<html>
<head>
<style>
* {
quotes: none !important;
}
</style>
<script>
function start () {
const o1 = document.getElementById('id_1')
const o2 = document.createElement('q')
const o3 = document.createElement('v')
document.documentElement.appendChild(o1)
o3.dir = 'rtl'
o2.appendChild(o3)
document.documentElement.appendChild(o2)
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
<q id="id_1">
</html>