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

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

The initial state is three bubbling events, one for each level and on the top level, 'A' there is an event handler that will remove itself and add an event to B, That event will in turn remove itself and add an event to C, which will in turn remove itself and add an event to A.

We are bubbling, but we are adding events in the the capture order so we should not get a chain reaction execpt on the last click were C adds an event to A, in which we get two of the events firing.

Clicking on C three times should obtain the following order of events. [click1] C,B,A,a1_onclick [click2] C,B,b1_onclick,A [click3] C,c1_onclick,B,A,a1_onclick

[A] [B] [C] .