RE: meaning of "contain" in the XSLT spec

David Carlisle wrote:
> I think `contains' when applied to elements _does_ 
> consistently refer to child relationship.

Hrm. Section 5.4, for example, reads:

  This example processes all of the heading elements
  contained in the book element.

  <xsl:template match="book">
    <fo:block>
      <xsl:apply-templates select=".//heading"/>
    </fo:block>
  </xsl:template>

But I hate to nitpick :)

Received on Friday, 1 October 1999 16:34:18 UTC