summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/xpath/preceding-axis-expected.txt
blob: b7ebacba53e63ca57df564413b25f7d73fe11fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 Querying in the following...

<div xmlns="http://www.w3.org/1999/xhtml" id="test">
    <span id="A"></span>
    <div>
      <span id="B">
        <span id="C"></span>
      </span>
    </div>
    <span id="D"></span>
</div>

Query "preceding::xhtml:span" from span#D
Result: span#A span#B span#C
Expected: span#A span#B span#C
***SUCCESS***