Page - AddHandler - TestCases #7 - Cross Browers Event Stacking

$Id: test_7_page_addhandler.html,v 1.20 2005/10/23 07:57:32 james Exp $

This Page Will Not Work In IE

Click on some of the text in square brackets, a series of popups will be displayed, the event 'letter' of each popup in turn should form a sequence that matches the sequence in the square brackets.

Eg if you click in [C,B,A] you should get three popups such as "event C (this=? target=?)" then "event B (this=? target=?)" and then "event A (this=? target=?)").

DEFAULT {using 'inline' onclick="f()"}

[A][B,A][C,B,A].


CAPTURE

[A][A,B][A,B,C].


BUBBLING

[A][B,A][C,B,A].


MIXED1 (A CAPTURED)

[A][A,B][A,C,B].


MIXED2 (B CAPTURED)

[A][B,A][B,C,A].


MIXED3 (C CAPTURED)

[A][B,A][C,B,A].


MIXED4 (A,B CAPTURED)

[A][A,B][A,B,C].


MIXED5 (A,C CAPTURED)

[A][A,B][A,C,B].


MIXED6 (B,C CAPTURED)

[A][B,A][B,C,A].


MIXED7 (C,B CAPTURED)

[A][B,A][B,C,A].


MIXED8 (C,B CAPTURED) c,b

[A][B,b,A][B,C,c,b,A].