Bug 1203610 - Don't load on-demand non-SVG UA sheets during static document clone. r=jwatt

This commit is contained in:
Cameron McCormack 2015-10-20 08:59:37 +11:00
Родитель 1492cb26ec
Коммит 7e5d31c9c3
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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);