This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Similar to bug 13760, IBM "openContent" test "s3_4_1si06" should have expected validity "valid". The schema /ibmData/schema_invalid/S3_4_1/s3_4_1si06.xsd has <!-- Test Case Type: Schema invalid test Description : Tests 1.4.3.2.2.4 - baseType wildcard is not a subset of derived type's wildcard in extension --> <complexType name="c"> <openContent mode="interleave"> <any processContents="lax"/> </openContent> <all> <element name="x" type="integer"/> <element name="y" type="integer"/> </all> </complexType> <complexType name="d"> <complexContent> <extension base="a:c"> <openContent mode="interleave"> <any processContents="lax" notQName="hi"/> <!-- invalid --> </openContent> </extension> </complexContent> </complexType> Type "d" extends "c", so it's open content wildcard is merged with that of the base type, and the subset condition is satisfied.
Discussed on 2011-10-07. Related to bug 13760, and should have a similar outcome.
*** Bug 14490 has been marked as a duplicate of this bug. ***