OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <input id='textField' type='text' style="position:relative;"> <br> | 2 <title>For the bug that click on the green strip in the scrollable iframe will n
ot make the iframe get the focus. crbug.com/531929</title> |
3 <iframe onload="runTest();" id="anIFrame" style="left:50px;width:200px;height:20
0px;position:absolute;" src="resources/scrollable-iframe-with-click-strip.html">
</iframe> | 3 <script src="../resources/testharness.js"></script> |
4 <script src="../resources/js-test.js"></script> | 4 <script src="../resources/testharnessreport.js"></script> |
| 5 <input type='text' style="position: relative;"> <br> |
| 6 <iframe style="left: 50px; width: 200px; height: 200px; position: absolute;" src
="resources/scrollable-iframe-with-click-strip.html"> </iframe> |
5 <script> | 7 <script> |
| 8 async_test(function(t) { |
| 9 var iframe = document.querySelector("iframe"); |
| 10 iframe.onload = t.step_func_done(function() { |
| 11 document.querySelector("input").focus(); |
| 12 var strip = iframe.contentDocument.getElementById("strip"); |
6 | 13 |
7 setPrintTestResultsLazily(); | 14 var x = iframe.offsetLeft + strip.offsetLeft + 5; |
8 description("For the bug that click on the green strip in the scrollable iframe
will not make the iframe get the focus. crbug.com/531929") | 15 var y = iframe.offsetTop + 5; |
9 | 16 |
10 window.jsTestIsAsync = true; | 17 // send mouse event to click iframe's green strip; |
11 | 18 eventSender.mouseMoveTo(x, y); |
12 function runTest() { | 19 eventSender.mouseDown(); |
13 document.getElementById("textField").focus(); | 20 eventSender.mouseUp(); |
14 if (window.eventSender) { | 21 assert_true(iframe.contentDocument.hasFocus()); |
15 var frame = document.getElementById("anIFrame"); | 22 }); |
16 var frame_doc = window.frames[0].document; | 23 }); |
17 var strip = frame_doc.getElementById("strip"); | |
18 | |
19 var x = frame.offsetLeft + strip.offsetLeft + 5; | |
20 var y = frame.offsetTop + 5; | |
21 | |
22 // send mouse event to click iframe's green strip; | |
23 eventSender.mouseMoveTo(x, y); | |
24 eventSender.mouseDown(); | |
25 eventSender.mouseUp(); | |
26 if (window.frames[0].document.hasFocus()) | |
27 debug("PASS"); | |
28 else | |
29 debug("FAIL"); | |
30 } | |
31 finishJSTest(); | |
32 } | |
33 </script> | 24 </script> |
OLD | NEW |