1320423-1.html (457B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 #target { 5 cursor: url(file:///somewhere/cursor.png), pointer; 6 position: absolute; 7 top: 0; 8 left: 0; 9 width: 100%; 10 height: 100%; 11 background: yellow; 12 } 13 #target:hover { 14 background: green; 15 } 16 </style> 17 <div id=target></div> 18 <script> 19 var target = document.getElementById("target"); 20 var x = window.outerWidth / 2, y = window.outerHeight / 2; 21 SpecialPowers.wrap(window).synthesizeMouseEvent("mouseover", x, y); 22 </script>