summaryrefslogtreecommitdiff
path: root/test/XPath/expr
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>1999-07-15 14:24:29 +0000
committerDaniel Veillard <veillard@src.gnome.org>1999-07-15 14:24:29 +0000
commit1566d3a91b50e08f8bd928da5a06d9c53a99747f (patch)
treef6c75eeafc37dd40a502e2a17e3d1f7ae8b710ba /test/XPath/expr
parentd79d787092753bc1f86e360f33b6d6bcb8940d80 (diff)
downloadlibxml2-1566d3a91b50e08f8bd928da5a06d9c53a99747f.tar.gz
Added XPath code (http://www.w3.org/TR/xpath), updated HTML support and docs, DanielLIB_XML_1_4
Diffstat (limited to 'test/XPath/expr')
-rw-r--r--test/XPath/expr/base5
-rw-r--r--test/XPath/expr/functions5
-rw-r--r--test/XPath/expr/strings19
3 files changed, 29 insertions, 0 deletions
diff --git a/test/XPath/expr/base b/test/XPath/expr/base
new file mode 100644
index 00000000..9aaed4fc
--- /dev/null
+++ b/test/XPath/expr/base
@@ -0,0 +1,5 @@
+1
+1+2
+2*3
+1+2*3+4
+(1+2)*(3+4)
diff --git a/test/XPath/expr/functions b/test/XPath/expr/functions
new file mode 100644
index 00000000..d2cba4e2
--- /dev/null
+++ b/test/XPath/expr/functions
@@ -0,0 +1,5 @@
+true()
+false()
+number("1.5")
+concat("titi",'toto')
+concat("titi",'toto',"tata","last")
diff --git a/test/XPath/expr/strings b/test/XPath/expr/strings
new file mode 100644
index 00000000..299b3007
--- /dev/null
+++ b/test/XPath/expr/strings
@@ -0,0 +1,19 @@
+string(5)
+string(0.5)
+string(-0.5)
+string(true())
+string(false())
+concat("titi","toto")
+concat("titi","toto","tata")
+starts-with("tititoto","titi")
+starts-with("tititoto","to")
+contains("tititototata","titi")
+contains("tititototata","toto")
+contains("tititototata","tata")
+contains("tititototata","tita")
+substring("12345",2,3)
+substring("12345",2)
+substring("12345",1.5,2.6)
+substring("12345",0,3)
+string-length("")
+string-length("titi")