mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
20 lines
394 B
HTML
20 lines
394 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function doTest()
|
|
{
|
|
var editor = document.getElementById("editor");
|
|
editor.focus();
|
|
editor.blur();
|
|
document.getSelection().selectAllChildren(document.body);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest();">
|
|
<p>normal text</p>
|
|
<div id="editor" contenteditable>editable text</div>
|
|
</body>
|
|
</html>
|
|
|