mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-18 14:21:02 +03:00
- debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer, incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath examples with the extra test Daniel
97 lines
1.7 KiB
Plaintext
97 lines
1.7 KiB
Plaintext
|
|
========================
|
|
Expression: 0<1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 0<=1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 0>1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 0>=1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 1<0
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 1<=0
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 1>0
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 1>=0
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 1<1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 1<=1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 1>1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 1>=1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: '0'<1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: '0'<=1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: '0'>1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: '0'>=1
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 0<'1.2'
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 0<='1.2'
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 0>'1.2'
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 0>='1.2'
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: false()<1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: false()<=1
|
|
Object is a Boolean : true
|
|
|
|
========================
|
|
Expression: 0>true()
|
|
Object is a Boolean : false
|
|
|
|
========================
|
|
Expression: 0>=true()
|
|
Object is a Boolean : false
|