| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 body { width: 600px; } | 5 body { width: 600px; } |
| 6 | 6 |
| 7 #footNote { | 7 #footNote { |
| 8 -webkit-flow-into: footNote; | 8 -webkit-flow-into: footNote; |
| 9 display: block; | 9 display: block; |
| 10 font-size: 13px; | 10 font-size: 13px; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // We are positioning the mouse to the center of the footNote (what is a dif
ferent region flow) and release the button | 41 // We are positioning the mouse to the center of the footNote (what is a dif
ferent region flow) and release the button |
| 42 var end = document.getElementById("end"); | 42 var end = document.getElementById("end"); |
| 43 var xEndPosition = end.offsetLeft + 0; | 43 var xEndPosition = end.offsetLeft + 0; |
| 44 var yEndPosition = end.offsetTop + end.offsetHeight / 2; | 44 var yEndPosition = end.offsetTop + end.offsetHeight / 2; |
| 45 eventSender.mouseMoveTo(xEndPosition, yEndPosition); | 45 eventSender.mouseMoveTo(xEndPosition, yEndPosition); |
| 46 eventSender.mouseUp(); | 46 eventSender.mouseUp(); |
| 47 } | 47 } |
| 48 </script> | 48 </script> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |