mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ed92562d68
--HG-- extra : rebase_source : 3e972a7f5dad81b5cba1b8ee93c16798fdc809c2
18 lines
295 B
HTML
18 lines
295 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("j").focus();
|
|
try {
|
|
document.execCommand("insertunorderedlist", false, null);
|
|
} catch(e) { }
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"><span><span contenteditable id="j"></span>T</span></body>
|
|
</html>
|