gecko-dev/dom/browser-element/mochitest/file_browserElement_SendEvent.html

11 lines
341 B
HTML

<html><body>
<button>sendMouseEvent</button>
</body><script>
function changeHash(e) {
document.location.hash = e.type;
};
window.addEventListener('mousedown', changeHash);
window.addEventListener('mousemove', changeHash);
window.addEventListener('mouseup', changeHash);
window.addEventListener('click', changeHash, true);
</script></html>