Revision e5449210b958ed555efab0ae0ecc9f2066bf1540 authored by B2G Bumper Bot on 17 March 2014, 06:51:03 UTC, committed by B2G Bumper Bot on 17 March 2014, 06:51:03 UTC
1 parent acbbec1
Raw File
824080-3-ref.html
<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript">
    function doTest()
    {
      document.getSelection().selectAllChildren(document.getElementById("text"));
      var editor = document.getElementById("editor");
      var editorBody = editor.contentDocument.body;
      editor.contentDocument.getSelection().selectAllChildren(editorBody);
      editor.focus();
    }
  </script>
</head>
<body>
<p id="text">normal text</p>
<iframe id="editor" onload="doTest();"
  src="data:text/html,<body>editable text</body>"></iframe>
</body>
</html>

back to top