3 <script src=
"../resources/js-test.js"></script>
6 <iframe srcdoc=
"<object type='application/x-webkit-test-netscape'></object>"></iframe>
7 <input id=
"input-post">
10 description('Test if sequential focus navigation works well with OBJECT in IFRAME.');
12 window
.onload = function() {
13 if (!window
.eventSender
) {
14 debug('Manual test instruction: Focus on the first INPUT, press TAB twice, confirm the second INPUT gets focus.');
17 document
.getElementById('input-pre').focus();
18 eventSender
.keyDown('\t');
19 eventSender
.keyDown('\t');
20 shouldBeEqualToString('document.activeElement.id', 'input-post');