зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
435 B
HTML
23 строки
435 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function onLoad() {
|
|
// For emulating the traditional behavior, collapse Selection to end of the
|
|
// text node at end of the <body>.
|
|
getSelection().collapse(
|
|
document.body.lastChild,
|
|
document.body.lastChild.length
|
|
);
|
|
document.execCommand("insertUnorderedList");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="onLoad()">
|
|
<table>
|
|
<th contenteditable>
|
|
<ol contenteditable>
|
|
</th>
|
|
</table>
|
|
</body>
|
|
</html>
|