mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 262188 - nsSchemaLoader::ProcessFacet checks for sMaxInclusive_atom twice, it should check for sMinInclusive_atopm the 2nd time. r=timeless/sr=peterv
This commit is contained in:
parent
c39f21c3b0
commit
1e7fadf591
@ -2972,7 +2972,7 @@ nsSchemaLoader::ProcessFacet(nsIWebServiceErrorHandler* aErrorHandler,
|
||||
else if (aTagName == nsSchemaAtoms::sMaxExclusive_atom) {
|
||||
facetType = nsISchemaFacet::FACET_TYPE_MAXEXCLUSIVE;
|
||||
}
|
||||
else if (aTagName == nsSchemaAtoms::sMaxInclusive_atom) {
|
||||
else if (aTagName == nsSchemaAtoms::sMinExclusive_atom) {
|
||||
facetType = nsISchemaFacet::FACET_TYPE_MINEXCLUSIVE;
|
||||
}
|
||||
else if (aTagName == nsSchemaAtoms::sTotalDigits_atom) {
|
||||
|
Loading…
Reference in New Issue
Block a user