зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1203610 - Don't load on-demand non-SVG UA sheets during static document clone. r=jwatt
This commit is contained in:
Родитель
1492cb26ec
Коммит
7e5d31c9c3
|
@ -102,6 +102,14 @@ SVGDocument::EnsureNonSVGUserAgentStyleSheetsLoaded()
|
|||
return;
|
||||
}
|
||||
|
||||
if (IsStaticDocument()) {
|
||||
// If we're a static clone of a document, then
|
||||
// nsIDocument::CreateStaticClone will handle cloning the original
|
||||
// document's sheets, including the on-demand non-SVG UA sheets,
|
||||
// for us.
|
||||
return;
|
||||
}
|
||||
|
||||
mHasLoadedNonSVGUserAgentStyleSheets = true;
|
||||
|
||||
BeginUpdate(UPDATE_STYLE);
|
||||
|
|
Загрузка…
Ссылка в новой задаче