Bug 1241784 - Part 2: Implement CSSPseudoElement.animate(). r=birtles

This commit is contained in:
Boris Chiou 2016-03-04 00:54:00 +01:00
Родитель c0917bf747
Коммит ce5add21a7
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -68,9 +68,9 @@ CSSPseudoElement::Animate(
const UnrestrictedDoubleOrKeyframeAnimationOptions& aOptions,
ErrorResult& aError)
{
// Bug 1241784: Implement this API.
NS_NOTREACHED("CSSPseudoElement::Animate() is not implemented yet.");
return nullptr;
Nullable<ElementOrCSSPseudoElement> target;
target.SetValue().SetAsCSSPseudoElement() = this;
return Element::Animate(target, aContext, aFrames, aOptions, aError);
}
/* static */ already_AddRefed<CSSPseudoElement>