Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: trunk/LayoutTests/fast/forms/select-list-box-mouse-focus.html

Issue 1184693003: Revert 196987 "Don't invoke default actions for MouseEvents gene..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Modified: svn:eol-style
## -1 +1 ##
-LF
\ No newline at end of property
+native
\ No newline at end of property
OLDNEW
1 <script> 1 <script>
2 function test() 2 function test()
3 { 3 {
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 var select = document.getElementById("select"); 6 var select = document.getElementById("select");
7 var rect = select.getBoundingClientRect(); 7 var x = select.clientLeft + 10;
8 var x = rect.left + 10; 8 var y = select.clientTop + 10;
9 var y = rect.top + 10; 9 var event = document.createEvent("MouseEvent");
10 10 event.initMouseEvent("mousedown", true, true, document.defaultView, 1, x, y, x, y, false, false, false, false, 0, document);
11 if (!eventSender) { 11 select.dispatchEvent(event);
12 alert('Click the select to run the test.');
13 return;
14 }
15
16 eventSender.mouseMoveTo(x, y);
17 eventSender.mouseDown(0);
18 } 12 }
19 function reportFocus() 13 function reportFocus()
20 { 14 {
21 document.getElementById("result").innerHTML = "PASS"; 15 document.getElementById("result").innerHTML = "PASS";
22 } 16 }
23 </script> 17 </script>
24 <body onload="test()"> 18 <body onload="test()">
25 <p>The select below should be focused once clicked.</p> 19 <p>The select below should be focused because we dispatched a mouse down event t o it.</p>
26 <p id="result">FAIL</p> 20 <p id="result">FAIL</p>
27 <select id="select" size="4" onfocus="reportFocus()"> 21 <select id="select" size="4" onfocus="reportFocus()">
28 <option>one</option> 22 <option>one</option>
29 <option>two</option> 23 <option>two</option>
30 <option>three</option> 24 <option>three</option>
31 <option>four</option> 25 <option>four</option>
32 </select> 26 </select>
33 </body> 27 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698