gecko-dev/dom/base/crashtests/1611853.html

20 строки
367 B
HTML

<html class="reftest-wait">
<head>
<style>
* {
user-select: none;
}
</style>
<script>
function start () {
document.execCommand('selectAll', false);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="start()">
<div contentEditable="true"></div>
</body>
</html>