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