Re: [xml-dev] relying on ordering of sibling XML elements

From
Richard Tobin <>
To
Date
2002-08-03T16:19:31Z
ID
<>
Thread
Re: [xml-dev] relying on ordering of sibling XML elements
In article <> you write:
>
>Question - does "proper" XML document design permit
>deriving a semantic meaning from the ordering of XML
>sibling elements?

Yes.

Observe that the Infoset (http://www.w3.org/TR/xml-infoset/) describes
the [children] property of an element as "an ordered list of child
information items, in document order".  Contrast this with [attributes]
which is "an unordered set of attribute information items".

-- Richard