5 <iframe srcdoc=
"<body contenteditable>foo</body>"></iframe>
7 <script type=
"text/javascript">
9 var div
= document
.querySelector("div");
10 div
.style
.position
= "absolute";
11 document
.body
.clientWidth
;
12 var iframe
= document
.querySelector("iframe");
13 var win
= iframe
.contentWindow
;
14 var body
= win
.document
.body
;
17 var sel
= win
.getSelection();
18 sel
.collapse(body
.firstChild
, 0);