diff options
Diffstat (limited to 'Source/WebCore/manual-tests/wml/onevent-prev.wml')
-rw-r--r-- | Source/WebCore/manual-tests/wml/onevent-prev.wml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/WebCore/manual-tests/wml/onevent-prev.wml b/Source/WebCore/manual-tests/wml/onevent-prev.wml new file mode 100644 index 0000000..6c909c2 --- /dev/null +++ b/Source/WebCore/manual-tests/wml/onevent-prev.wml @@ -0,0 +1,19 @@ +<?xml version="1.0"?> +<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> +<wml> + <card id="card1" title="Card 1"> + <p>Test for onevent element which binds prev task with onenterforward event</p> + <p>Clicking "Go" will cause it to jump to the card2, but which binds prev task to onenterforward event within onevent element, as a result, it will jump back to card 1</p> + <anchor title="Go to card2">Go + <go href="#card2"/> + </anchor> + </card> + + <card id="card2" title="Card 2"> + <p>Test for onevent element which binds prev task with onenterforward event</p> + <p>This is card2. When card 2 is entered forward, it will jump back to the previous page</p> + <onevent type="onenterforward"> + <prev/> + </onevent> + </card> +</wml> |