blob: 2d1a153d5961366ce908b2b4668a153d26466d5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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>
|