mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
345 B
HTML
20 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("s").focus();
|
|
try {
|
|
document.execCommand("insertorderedlist", false, null);
|
|
} catch(e) { }
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><span id="s" contenteditable="true">One<div></div></span><marquee></marquee></body>
|
|
|
|
</html>
|