blob: e9aa1d8e23982f1648969148ebf2ca0fb0223475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<style>
div:first-letter{}
</style>
<script>
function boom()
{
document.execCommand("selectAll", false, null);
document.execCommand("decreasefontsize", false, null);
}
</script>
</head>
<body onload="boom();" style="font-size: 0;"><div contenteditable="true" style="column-width: 1px; white-space: pre-line;">
<span>T</span>his is text</div></body>
</html>
|