1 2 ======================== 3 Expression: xpointer(//chapitre[2]) 4 Object is empty (NULL) 5 6 ======================== 7 Expression: xpointer(//chapter[2]) 8 Object is a Node Set : 9 Set contains 1 nodes: 10 1 ELEMENT chapter 11 ATTRIBUTE id 12 TEXT 13 content=chapter2 14 15 ======================== 16 Expression: xpointer(//chapitre[2])xpointer(//chapter[2]) 17 Object is a Node Set : 18 Set contains 1 nodes: 19 1 ELEMENT chapter 20 ATTRIBUTE id 21 TEXT 22 content=chapter2 23 24 ======================== 25 Expression: xpointer(id("chapter1")) 26 Object is empty (NULL) 27 28 ======================== 29 Expression: xpointer(//*[@id="chapter1"]) 30 Object is a Node Set : 31 Set contains 1 nodes: 32 1 ELEMENT chapter 33 ATTRIBUTE id 34 TEXT 35 content=chapter1 36 37 ======================== 38 Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"]) 39 Object is a Node Set : 40 Set contains 1 nodes: 41 1 ELEMENT chapter 42 ATTRIBUTE id 43 TEXT 44 content=chapter1 45