Page - AddHandler - TestCases #18 - Cross Browers Event Stacking - Defacto Standard Mode

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

Click in a section in square brackets, a series of popups will 'popup' and the event 'letter' of each popup should form a sequence that matches the sequence of letters 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].