mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Added xmlValidGetValidElements and xmlValidGetPotentialChildren, Completed and cleaned up the tests, Added doc for new modules gnome-xml-xmlmemory.html and gnome-xml-nanohttp.html, Daniel
26 lines
279 B
Plaintext
26 lines
279 B
Plaintext
1=1
|
|
1!=1
|
|
1=0
|
|
1!=0
|
|
true()=true()
|
|
true()!=true()
|
|
true()=false()
|
|
false()!=true()
|
|
'test'='test'
|
|
'test'!='test'
|
|
'test2'='test'
|
|
'test2'!='test'
|
|
false()=0
|
|
false()!=0
|
|
false()=1
|
|
false()!=1
|
|
0=true()
|
|
0!=true()
|
|
1=true()
|
|
1!=true()
|
|
true()='test'
|
|
false()='test'
|
|
'test'!=true()
|
|
'test'!=false()
|
|
|