1 Querying in the following...
3 <div xmlns="http://www.w3.org/1999/xhtml" id="test">
12 Query "ancestor::xhtml:span" from span#B
17 Query ".|ancestor::xhtml:span" from span#B
19 Expected: span#A span#B
22 Query "ancestor::xhtml:span|." from span#B
24 Expected: span#A span#B
27 Query "ancestor::xhtml:*[local-name()='span']" from span#B
32 Query ".|ancestor::xhtml:*[local-name()='span']" from span#B
34 Expected: span#A span#B
37 Query "ancestor::xhtml:*[local-name()='span']|." from span#B
39 Expected: span#A span#B
42 Query "(ancestor::xhtml:*[local-name()='span'])|." from span#B
44 Expected: span#A span#B
47 Query "following::xhtml:*[local-name()='span']" from span#B
49 Expected: span#C span#D
52 Query ".|following::xhtml:*[local-name()='span']" from span#B
53 Result: span#B span#C span#D
54 Expected: span#B span#C span#D
57 Query "following::xhtml:*[local-name()='span']|." from span#B
58 Result: span#B span#C span#D
59 Expected: span#B span#C span#D