зеркало из https://github.com/mozilla/gecko-dev.git
Bug 729048 - Part 2: Replace calls to nsParserService::CheckQName with nsContentUtils::CheckQName in nsDocument.cpp. r=hsivonen
This commit is contained in:
Родитель
fa81c26f58
Коммит
6bfeaa8a5a
|
@ -1420,12 +1420,9 @@ nsDOMImplementation::CreateDocument(const nsAString& aNamespaceURI,
|
|||
|
||||
nsresult rv;
|
||||
if (!aQualifiedName.IsEmpty()) {
|
||||
nsIParserService *parserService = nsContentUtils::GetParserService();
|
||||
NS_ENSURE_TRUE(parserService, NS_ERROR_FAILURE);
|
||||
|
||||
const nsAFlatString& qName = PromiseFlatString(aQualifiedName);
|
||||
const PRUnichar *colon;
|
||||
rv = parserService->CheckQName(qName, true, &colon);
|
||||
rv = nsContentUtils::CheckQName(qName, true, &colon);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
if (colon &&
|
||||
|
|
Загрузка…
Ссылка в новой задаче