Blame test/schemas/anyAttr-processContents1_0.xsd

Packit Service a31ea6
Packit Service a31ea6
Packit Service a31ea6
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
Packit Service a31ea6
	elementFormDefault="qualified"
Packit Service a31ea6
	targetNamespace="http://FOO">
Packit Service a31ea6
Packit Service a31ea6
	<xsd:element name="foo">
Packit Service a31ea6
		<xsd:complexType>
Packit Service a31ea6
		    <xsd:sequence>			
Packit Service a31ea6
				<xsd:element name="elem.lax.A" type="foo:type.lax"/>				
Packit Service a31ea6
				<xsd:element name="elem.lax.B" type="foo:type.lax"/>				
Packit Service a31ea6
				<xsd:element name="elem.strict" type="foo:type.strict"/>				
Packit Service a31ea6
				<xsd:element name="elem.skip" type="foo:type.skip"/>				
Packit Service a31ea6
			</xsd:sequence>
Packit Service a31ea6
		</xsd:complexType>
Packit Service a31ea6
	</xsd:element>
Packit Service a31ea6
Packit Service a31ea6
	<xsd:attribute name="barA" type="xsd:language" />
Packit Service a31ea6
	<xsd:attribute name="barB" type="xsd:language" />
Packit Service a31ea6
Packit Service a31ea6
	<xsd:complexType name="type.lax">			
Packit Service a31ea6
		<xsd:anyAttribute namespace="##any" processContents="lax"/>	
Packit Service a31ea6
	</xsd:complexType>
Packit Service a31ea6
	<xsd:complexType name="type.strict">			
Packit Service a31ea6
		<xsd:anyAttribute namespace="##any"/>	
Packit Service a31ea6
	</xsd:complexType>
Packit Service a31ea6
	<xsd:complexType name="type.skip">			
Packit Service a31ea6
		<xsd:anyAttribute namespace="##any" processContents="skip"/>	
Packit Service a31ea6
	</xsd:complexType>
Packit Service a31ea6
	
Packit Service a31ea6
</xsd:schema>
Packit Service a31ea6