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

* xmlschemas.c include/libxml/schemasInternals.h include/libxml/xmlerror.h: applied a patch from Kasimier Buchcik implementing attribute uses and wildcards. * test/schemas/* result/schemas/*: added/fixed a bunch of tests Daniel
27 lines
841 B
XML
27 lines
841 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<foo
|
|
xmlns="http://FOO"
|
|
xmlns:foo="http://FOO"
|
|
xmlns:bar="http://BAR"
|
|
xmlns:import="http://IMPORT"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://FOO file:///c:/dev/libxml2/patches/2004-05-17/anyAttr-errors1_0.xsd">
|
|
|
|
<!-- not allowed: foo:barC -->
|
|
<basic.B foo:barC="o"/>
|
|
<!-- not allowed: foo:barC -->
|
|
<basic.C foo:barC="o"/>
|
|
<!-- not allowed: barA, bar:barB -->
|
|
<basic.D barA="o" bar:barB="o"/>
|
|
<!-- not allowed: bar:barB -->
|
|
<inters.2_1 barA="o" bar:barB="o" foo:barC="o"/>
|
|
<!-- not allowed: barA, foo:barC -->
|
|
<inters.3_1 barA="o" bar:barB="o" foo:barC="o"/>
|
|
<!-- not allowed: bar:barB -->
|
|
<inters.4_1 barA="o" bar:barB="o" foo:barC="o"/>
|
|
<!-- not allowed: barA, foo:barC -->
|
|
<inters.6_1 barA="o" bar:barB="o" foo:barC="o"/>
|
|
</foo>
|
|
|
|
|