mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
312 B
HTML
19 lines
312 B
HTML
<!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>
|