shepmaster / sxd-xpath

An XPath library in Rust
Apache License 2.0
119 stars 34 forks source link

preceding and following axes do not include siblings children #98

Closed shepmaster closed 7 years ago

shepmaster commented 7 years ago

With this XML:

<a0>
  <b0>
    <c0 />
    <c1 />
  </b0>
  <b1>
    <c2 />
    <c3 />
    <c4 />
  </b1>
  <b2>
    <c5 />
    <c6 />
  </b2>
</a0>

If we start at c3 and use the preceding axis, we should visit c2, c1, c0, and b0, but we currently only visit c2 and b0.

shepmaster commented 7 years ago

Closed via #102