4 <script src=
"../../resources/js-test.js"></script>
6 window
.jsTestIsAsync
= true;
11 description('Focus can be moved around frames.');
12 document
.getElementsByTagName("iframe")[0].focus();
20 target
= document
.getElementById('target');
22 shouldBeTrue('document.activeElement == target');
23 shouldBe('target.selectionStart', '0');
24 shouldBe('target.selectionEnd', '0');
25 document
.getElementById('container').outerHTML
= '';
32 <input id=
"target"><br>
33 <iframe src=
"data:text/html,<body><input><script>document.querySelector('input').focus()</script></body>" height
=40 width
=200></iframe
>