Bug 1450881 - Hold a reference of the target element when we get style for the element. r=birtles

This commit is contained in:
Hiroyuki Ikezoe 2018-05-02 06:17:41 +09:00
Родитель 633d168bde
Коммит b3cda193ed
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -789,6 +789,9 @@ KeyframeEffectReadOnly::GetTargetComputedStyle()
? nsCSSPseudoElements::GetPseudoAtom(mTarget->mPseudoType)
: nullptr;
OwningAnimationTarget kungfuDeathGrip(mTarget->mElement,
mTarget->mPseudoType);
return nsComputedDOMStyle::GetComputedStyle(mTarget->mElement, pseudo);
}