mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
70eb2838de
(I bet that there are text nodes on the web which have more than 65535 characters on the Web!)
31 lines
659 B
HTML
31 lines
659 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function repeatChar(s, n)
|
|
{
|
|
while (s.length < n)
|
|
s += s;
|
|
return s.substr(0, n);
|
|
}
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.contentEditable = "true";
|
|
document.execCommand("inserthtml", false, "<button><\/button>");
|
|
document.execCommand("inserthtml", false, repeatChar("i", 34646));
|
|
document.execCommand("contentReadOnly", false, null);
|
|
document.execCommand("removeformat", false, null);
|
|
document.execCommand("hilitecolor", false, "red");
|
|
document.execCommand("inserthtml", false, "a");
|
|
document.execCommand("delete", false, null);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
|
|
</html>
|