| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 4XPath Performance test from "Olivier Deckmyn" <odeckmyn.list@teaser.fr>, with i
mport and filename updates | 2 4XPath Performance test from "Olivier Deckmyn" <odeckmyn.list@teaser.fr>, with i
mport and filename updates |
| 3 | 3 |
| 4 Subject: [4suite] 4XPath performance ? | 4 Subject: [4suite] 4XPath performance ? |
| 5 Date: Thu, 8 Jun 2000 16:30:21 +0200 | 5 Date: Thu, 8 Jun 2000 16:30:21 +0200 |
| 6 From: "Olivier Deckmyn" <odeckmyn.list@teaser.fr> | 6 From: "Olivier Deckmyn" <odeckmyn.list@teaser.fr> |
| 7 To: "4Suite list" <4suite@dollar.fourthought.com> | 7 To: "4Suite list" <4suite@dollar.fourthought.com> |
| 8 | 8 |
| 9 I am playing and testing 4XPath.... | 9 I am playing and testing 4XPath.... |
| 10 And I am a little afraid of the results I see... | 10 And I am a little afraid of the results I see... |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 EXPR = '//author' | 71 EXPR = '//author' |
| 72 nodeset = xml_dom_object.evaluate(EXPR, xml_dom_object, null, XPathResult.UN
ORDERED_NODE_SNAPSHOT_TYPE, null); | 72 nodeset = xml_dom_object.evaluate(EXPR, xml_dom_object, null, XPathResult.UN
ORDERED_NODE_SNAPSHOT_TYPE, null); |
| 73 shouldBe('nodeset.snapshotLength', '0') | 73 shouldBe('nodeset.snapshotLength', '0') |
| 74 | 74 |
| 75 EXPR = '//date' | 75 EXPR = '//date' |
| 76 nodeset = xml_dom_object.evaluate(EXPR, xml_dom_object, null, XPathResult.UN
ORDERED_NODE_SNAPSHOT_TYPE, null); | 76 nodeset = xml_dom_object.evaluate(EXPR, xml_dom_object, null, XPathResult.UN
ORDERED_NODE_SNAPSHOT_TYPE, null); |
| 77 shouldBe('nodeset.snapshotLength', '12') | 77 shouldBe('nodeset.snapshotLength', '12') |
| 78 | 78 |
| 79 </script> | 79 </script> |
| 80 <script src="../../../js/resources/js-test-post.js"></script> | |
| 81 </body> | 80 </body> |
| 82 </html> | 81 </html> |
| OLD | NEW |