Bug 1701221 [wpt PR 28260] - [cleanup] Remove myself from various READMEs and META...
[gecko.git] / editor / reftests / 824080-5.html
blob30771d63f374f3cb8c4284a0b2ec9cab15a92cff
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function doTest()
7 var editor1 = document.getElementById("editor1");
8 editor1.focus();
9 editor1.blur();
10 document.getSelection().selectAllChildren(document.body);
11 var editor2 = document.getElementById("editor2");
12 var editorBody = editor2.contentDocument.body;
13 editor2.contentDocument.getSelection().selectAllChildren(editorBody);
14 editor2.focus();
16 </script>
17 </head>
18 <body>
19 <p>normal text</p>
20 <div id="editor1" contenteditable>content editable</div>
21 <iframe id="editor2" onload="doTest();"
22 src="data:text/html,<script>document.designMode='on';</script><body>editable text</body>"></iframe>
23 </body>
24 </html>