RE: Transition order

Yes, this is correct.

-          Jim

From: David Junger [mailto:tffy@free.fr]
Sent: Sunday, February 10, 2013 4:53 AM
To: VBWG Public (www-voice@w3.org)
Subject: Transition order

I just wanted to get one thing clear, because there seems to be some potential confusion in other discussions about this specific detail:

Transition order != document order

Take this example:

<state>
    <transition target="a"/>
    <state>
        <transition target="b"/>
    </state>
</state>

The transitions are in conflict since neither "a" nor "b" are internal targets, but it is the transition to "b" that will be taken although it comes after the transition to "a" in document order.

from the spec (emphasis added):

[Definition: A transition T is optimally enabled by event E in atomic state S if a) T is enabled by E in S and b) no transition that precedes T in document order in T's source state is enabled by E in S and c) no transition is enabled by E in S in any descendant of T's source state.]

                                    David

Received on Sunday, 10 February 2013 20:31:18 UTC