| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script> | 4 <script> |
| 5 function clickOn(element) | 5 function clickOn(element) |
| 6 { | 6 { |
| 7 if (!window.eventSender) | 7 if (!window.eventSender) |
| 8 return; | 8 return; |
| 9 | 9 |
| 10 var absoluteTop = 0; | 10 var absoluteTop = 0; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 </head> | 34 </head> |
| 35 <body onload="runTest()"> | 35 <body onload="runTest()"> |
| 36 <p>Ensure that simulated click is still dispatched to an inert node. | 36 <p>Ensure that simulated click is still dispatched to an inert node. |
| 37 To test manually, click the CLICK ME label and verify it does change the val
ue of the checkbox.</p> | 37 To test manually, click the CLICK ME label and verify it does change the val
ue of the checkbox.</p> |
| 38 <div> | 38 <div> |
| 39 </div> | 39 </div> |
| 40 <input type="checkbox" id="target"> | 40 <input type="checkbox" id="target"> |
| 41 <dialog><label for="target">CLICK ME</label></dialog> | 41 <dialog><label for="target">CLICK ME</label></dialog> |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |