зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1407463 - Drop unused pseudo atom argument from GetBaseContextForElement. r=heycam
MozReview-Commit-ID: JJ2Jh1I6y4h --HG-- extra : rebase_source : 99c458dfffee88103e5f2b01f9ff9ae0256b8c62
This commit is contained in:
Родитель
a5c66d4d97
Коммит
2b54925c5c
|
@ -557,7 +557,6 @@ KeyframeEffectReadOnly::EnsureBaseStyle(
|
|||
aPresContext->StyleSet()->AsServo()->GetBaseContextForElement(
|
||||
mTarget->mElement,
|
||||
aPresContext,
|
||||
nullptr,
|
||||
aPseudoType,
|
||||
aComputedStyle);
|
||||
}
|
||||
|
|
|
@ -1221,7 +1221,6 @@ already_AddRefed<ServoStyleContext>
|
|||
ServoStyleSet::GetBaseContextForElement(
|
||||
Element* aElement,
|
||||
nsPresContext* aPresContext,
|
||||
nsAtom* aPseudoTag,
|
||||
CSSPseudoElementType aPseudoType,
|
||||
const ServoStyleContext* aStyle)
|
||||
{
|
||||
|
|
|
@ -389,7 +389,6 @@ public:
|
|||
already_AddRefed<ServoStyleContext>
|
||||
GetBaseContextForElement(dom::Element* aElement,
|
||||
nsPresContext* aPresContext,
|
||||
nsAtom* aPseudoTag,
|
||||
CSSPseudoElementType aPseudoType,
|
||||
const ServoStyleContext* aStyle);
|
||||
|
||||
|
|
|
@ -715,7 +715,7 @@ nsComputedDOMStyle::DoGetStyleContextNoFlush(Element* aElement,
|
|||
} else {
|
||||
return presContext->StyleSet()->AsServo()->
|
||||
GetBaseContextForElement(aElement, presContext,
|
||||
aPseudo, pseudoType, result->AsServo());
|
||||
pseudoType, result->AsServo());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -748,7 +748,7 @@ nsComputedDOMStyle::DoGetStyleContextNoFlush(Element* aElement,
|
|||
}
|
||||
|
||||
return servoSet->GetBaseContextForElement(aElement, presContext,
|
||||
aPseudo, pseudoType, result);
|
||||
pseudoType, result);
|
||||
}
|
||||
|
||||
RefPtr<GeckoStyleContext> parentContext;
|
||||
|
|
Загрузка…
Ссылка в новой задаче