click.html
1.46 KB
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
39
40
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CasperJS test click</title>
</head>
<body>
<a id="test1" href="javascript:results.test1 = true;">test1</a>
<a id="test2" href="#" onclick="results.test2 = true;">test2</a>
<a id="test3" href="page1.html" onclick="results.test3 = true; return false">test3</a>
<a id="test4" href="http://www.google.com/">test4</a>
<script>
(function(window) {
window.results = {
test1: false,
test2: false,
test3: false,
test4: false,
testdown: [],
testup: [],
testmove: [],
testclick: []
};
document.querySelector('#test4').onclick = function(event) {
results.test4 = true;
event.preventDefault();
};
window.onmousedown = function(event) {
results.testdown = [event.x, event.y];
};
window.onmouseup = function(event) {
results.testup = [event.x, event.y];
};
window.onmousemove = function(event) {
results.testmove = [event.x, event.y];
};
})(window);
</script>
</body>
</html>