blob: 64359c796bc782b92221b1c4ac061c0b5c203753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener('DOMContentLoaded', function(){
document.documentElement.className = 'lizard';
setTimeout(function(){
document.execCommand('selectAll', false, null);
document.designMode = 'on';
document.execCommand('removeformat', false, null);
}, 0);
});
</script>
<style>
.lizard{
-webkit-user-select:all;
}
*{
position:fixed;
display:table-column;
}
</style>
</head>
<body>
<span>
<span contenteditable>
<span class=lizard></span>
<span class=lizard></span>
<span />
</span>
</span>
</span>
</span>
</body>
</html>
|