mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-23 18:29:14 +08:00
Added XPointer: - configure.in Makefile.am include/makefile.am: adding XPointer and XPtrtests target - xpointer.[ch] : new files for XPointer support - test/XPath/xptr result/XPath/xptr: added XPointer testsuite and more XPath tests Daniel
28 lines
574 B
Plaintext
28 lines
574 B
Plaintext
|
|
========================
|
|
Expression: xpointer(id("chapter1"))
|
|
Object is a Node Set :
|
|
Set contains 1 nodes:
|
|
1 ELEMENT chapter
|
|
ATTRIBUTE id
|
|
TEXT
|
|
content=chapter1
|
|
|
|
========================
|
|
Expression: xpointer(//*[@id="chapter1"])
|
|
Object is a Node Set :
|
|
Set contains 1 nodes:
|
|
1 ELEMENT chapter
|
|
ATTRIBUTE id
|
|
TEXT
|
|
content=chapter1
|
|
|
|
========================
|
|
Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"])
|
|
Object is a Node Set :
|
|
Set contains 1 nodes:
|
|
1 ELEMENT chapter
|
|
ATTRIBUTE id
|
|
TEXT
|
|
content=chapter1
|