blob: 1e94c12ba2c15c4be72d9ece31528e9a4f96efb5 (
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="-moz-column-width: 1px; white-space: pre-line;">
<span>T</span>his is text</div></body>
</html>
|