Bug 810559 - Switch publicID and systemID to match IDL and SAX specification. r=smaug

This commit is contained in:
Alex Vincent 2012-11-13 21:16:00 -05:00
parent f779bed777
commit f60312a268

View File

@ -179,8 +179,8 @@ nsSAXXMLReader::HandleStartDTD(const PRUnichar *aName,
mPublicId = aPublicId;
if (mLexicalHandler) {
return mLexicalHandler->StartDTD(nsDependentString(aName),
nsDependentString(aSystemId),
nsDependentString(aPublicId));
nsDependentString(aPublicId),
nsDependentString(aSystemId));
}
return NS_OK;