mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
466 B
HTML
21 lines
466 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
window.getSelection().removeAllRanges();
|
|
var r = document.createRange();
|
|
r.setStart(document.getElementById("x"), 1);
|
|
r.setEnd(document.getElementById("y"), 0);
|
|
window.getSelection().addRange(r);
|
|
document.execCommand("insertorderedlist", false, null);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><div id="x" contenteditable="true">a</div><div id="y" contenteditable="true"></div></body>
|
|
</html>
|