mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
335 B
HTML
18 lines
335 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function doTest()
|
|
{
|
|
var editor = document.getElementById("editor");
|
|
document.getSelection().selectAllChildren(document.body);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest();">
|
|
<p>normal text</p>
|
|
<div id="editor">editable text</div>
|
|
</body>
|
|
</html>
|
|
|