зеркало из https://github.com/mozilla/pjs.git
Bug 559311 - [HTML5] nsContentUtils::CreateContextualFragment doesn't cache HTML5 parser, r=hsivonen
This commit is contained in:
Родитель
b6789359b2
Коммит
203bfc6188
|
@ -3730,7 +3730,6 @@ nsContentUtils::CreateContextualFragment(nsIDOMNode* aContextNode,
|
|||
if (!parser) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
document->SetFragmentParser(parser);
|
||||
}
|
||||
nsCOMPtr<nsIDOMDocumentFragment> frag;
|
||||
rv = NS_NewDocumentFragment(getter_AddRefs(frag), document->NodeInfoManager());
|
||||
|
@ -3760,6 +3759,7 @@ nsContentUtils::CreateContextualFragment(nsIDOMNode* aContextNode,
|
|||
}
|
||||
|
||||
NS_ADDREF(*aReturn = frag);
|
||||
document->SetFragmentParser(parser);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче