blob: 0c5e0248289b5e76c37c65a7b830e6873c17a2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<script>
window.jsTestIsAsync = true;
function test() {
var div = document.querySelector('div');
if (window.eventSender) {
eventSender.mouseMoveTo(div.offsetLeft + 5, div.offsetTop + 5);
eventSender.mouseScrollBy(0,120);
} else {
debug("FAIL: This test requires window.eventSender.");
finishJSTest();
}
}
function wheelHandler(e) {
window.theEvent = e;
debug("'Real' MouseWheel events should not be dispatched on the text node, but instead on its parent.");
shouldBeEqualToString('theEvent.target.nodeName', 'DIV');
finishJSTest();
}
window.onload = function () {
var div = document.querySelector('div');
div.addEventListener('mousewheel', wheelHandler);
test();
};
</script>
</head>
<body>
<div>This is a div containing text. Wheel events originating on the text
node should target the div.</div>
</body>
</html>
|