Bug 1404140 - Cleanup initialization of nsComputedDOMStyle::mFlushedPendingReflows. r=heycam

Differential Revision: https://phabricator.services.mozilla.com/D40294
This commit is contained in:
Emilio Cobos Álvarez 2019-07-31 19:08:37 +02:00
Родитель 12cc4ad0c8
Коммит 405bc1b7e9
2 изменённых файлов: 1 добавлений и 5 удалений

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

@ -308,10 +308,6 @@ nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement,
mStyleType(aStyleType),
mExposeVisitedStyle(false),
mResolvedComputedStyle(false)
#ifdef DEBUG
,
mFlushedPendingReflows(false)
#endif
{
MOZ_ASSERT(aElement);
MOZ_ASSERT(aDocument);

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

@ -406,7 +406,7 @@ class nsComputedDOMStyle final : public nsDOMCSSDeclaration,
bool mResolvedComputedStyle;
#ifdef DEBUG
bool mFlushedPendingReflows;
bool mFlushedPendingReflows = false;
#endif
friend struct ComputedStyleMap;