blob: 65e7251ab9400faf63a17ce38af01b1d84c3da39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.execCommand("inserthtml", false, "ABC ");
document.execCommand("delete", false, null);
document.execCommand("inserthtml", false, "<style>");
}
</script>
</head>
<body onload="setTimeout(boom, 0);" contenteditable="true"></body>
</html>
|