editor/reftests/caret_on_presshell_reinit-ref.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html>
     3   <body>
     4     <div style="position: absolute">
     5       <iframe src="data:text/html,<body contenteditable>foo</body>"></iframe>
     6     </div>
     7     <script type="text/javascript">
     8       onload = function() {
     9         var iframe = document.querySelector("iframe");
    10         var win = iframe.contentWindow;
    11         var body = win.document.body;
    12         iframe.focus();
    13         body.focus();
    14         var sel = win.getSelection();
    15         sel.collapse(body.firstChild, 0);
    16       };
    17     </script>
    18   </body>
    19 </html>

mercurial