blob: 019143e366c87215ca38ba21613e41280532f835 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<!DOCTYPE HTML>
<html>
<head>
<title> W3C DOM Level 3 Event Object method: stopPropagation </title>
<script type="text/javascript">
var PassTest = function()
{
document.getElementById("testresult").firstChild.data = "PASS";
}
var FailTest = function()
{
document.getElementById("testresult").firstChild.data = "FAIL";
}
var EVENT = "mousedown";
var TARGET, PARENT;
var ActualResult = [];
var ExpectResult = [];
window.onload = function()
{
try
{
TARGET = document.getElementById("target");
PARENT = document.getElementById("parent");
ExpectResult = [document.body, PARENT];
TARGET.addEventListener(EVENT, TestEvent, true);
TARGET.addEventListener(EVENT, TestEvent, false);
PARENT.addEventListener(EVENT, TestEvent, true);
PARENT.addEventListener(EVENT, TestEvent, false);
document.body.addEventListener(EVENT, TestEvent, true);
}
catch(ex)
{
FailTest();
}
}
function TestEvent(evt)
{
ActualResult.push(evt.currentTarget);
if (evt.currentTarget == PARENT)
{
try
{
evt.stopPropagation();
}
catch(ex)
{
}
}
}
function VerifyTest()
{
if (ActualResult.toString() == ExpectResult.toString())
{
PassTest();
}
else
{
FailTest();
}
}
</script>
</head>
<body>
<h4>
Test Description:
stopPropagation prevents other event listeners from being triggered.
</h4>
<div id="parent">
Click the button: <input id="target" type="button" value="Target" onmouseup="VerifyTest()" />
</div>
<p>Test passes if the word "PASS" appears below after clicking the above button using mouse.</p>
<div>Test result: </div>
<div id='testresult'>FAIL</div>
</body>
</html>
|