2009-10-08 07:22:42 +04:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-10-08 07:22:42 +04:00
|
|
|
|
|
|
|
/* Code to start and animate CSS transitions. */
|
|
|
|
|
|
|
|
#ifndef nsTransitionManager_h_
|
|
|
|
#define nsTransitionManager_h_
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2015-07-29 04:57:40 +03:00
|
|
|
#include "mozilla/ContentEvents.h"
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2015-04-21 04:22:09 +03:00
|
|
|
#include "mozilla/dom/Animation.h"
|
2015-04-15 02:48:21 +03:00
|
|
|
#include "mozilla/dom/KeyframeEffect.h"
|
2011-04-12 10:18:43 +04:00
|
|
|
#include "AnimationCommon.h"
|
2015-07-29 04:57:40 +03:00
|
|
|
#include "nsCSSProps.h"
|
2009-12-11 10:37:40 +03:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2009-10-08 07:22:42 +04:00
|
|
|
|
2015-04-28 09:48:35 +03:00
|
|
|
class nsIGlobalObject;
|
2009-10-08 07:22:42 +04:00
|
|
|
class nsStyleContext;
|
|
|
|
class nsPresContext;
|
|
|
|
class nsCSSPropertySet;
|
2012-07-31 21:28:21 +04:00
|
|
|
|
2014-06-27 03:57:12 +04:00
|
|
|
namespace mozilla {
|
|
|
|
struct StyleTransition;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|
2014-06-27 03:57:12 +04:00
|
|
|
|
2012-07-31 21:28:21 +04:00
|
|
|
/*****************************************************************************
|
|
|
|
* Per-Element data *
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2014-06-27 03:57:12 +04:00
|
|
|
namespace mozilla {
|
|
|
|
|
2015-04-30 16:06:43 +03:00
|
|
|
struct ElementPropertyTransition : public dom::KeyframeEffectReadOnly
|
2012-07-31 21:28:21 +04:00
|
|
|
{
|
2014-08-10 11:06:52 +04:00
|
|
|
ElementPropertyTransition(nsIDocument* aDocument,
|
2014-10-02 10:14:15 +04:00
|
|
|
dom::Element* aTarget,
|
|
|
|
nsCSSPseudoElements::Type aPseudoType,
|
2014-08-10 11:06:52 +04:00
|
|
|
const AnimationTiming &aTiming)
|
2015-07-01 09:19:04 +03:00
|
|
|
: dom::KeyframeEffectReadOnly(aDocument, aTarget, aPseudoType, aTiming)
|
2014-10-02 10:14:15 +04:00
|
|
|
{ }
|
2014-07-16 04:02:30 +04:00
|
|
|
|
2015-06-09 05:13:53 +03:00
|
|
|
ElementPropertyTransition* AsTransition() override { return this; }
|
|
|
|
const ElementPropertyTransition* AsTransition() const override
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
2014-05-15 03:38:37 +04:00
|
|
|
|
2015-04-14 03:11:44 +03:00
|
|
|
nsCSSProperty TransitionProperty() const {
|
|
|
|
MOZ_ASSERT(Properties().Length() == 1,
|
|
|
|
"Transitions should have exactly one animation property. "
|
|
|
|
"Perhaps we are using an un-initialized transition?");
|
|
|
|
return Properties()[0].mProperty;
|
|
|
|
}
|
|
|
|
|
2012-07-31 21:28:21 +04:00
|
|
|
// This is the start value to be used for a check for whether a
|
2014-04-03 09:57:27 +04:00
|
|
|
// transition is being reversed. Normally the same as
|
|
|
|
// mProperties[0].mSegments[0].mFromValue, except when this transition
|
|
|
|
// started as the reversal of another in-progress transition.
|
|
|
|
// Needed so we can handle two reverses in a row.
|
2015-09-15 08:04:05 +03:00
|
|
|
StyleAnimationValue mStartForReversingTest;
|
2012-07-31 21:28:21 +04:00
|
|
|
// Likewise, the portion (in value space) of the "full" reversed
|
|
|
|
// transition that we're actually covering. For example, if a :hover
|
|
|
|
// effect has a transition that moves the element 10px to the right
|
|
|
|
// (by changing 'left' from 0px to 10px), and the mouse moves in to
|
|
|
|
// the element (starting the transition) but then moves out after the
|
|
|
|
// transition has advanced 4px, the second transition (from 10px/4px
|
|
|
|
// to 0px) will have mReversePortion of 0.4. (If the mouse then moves
|
|
|
|
// in again when the transition is back to 2px, the mReversePortion
|
|
|
|
// for the third transition (from 0px/2px to 10px) will be 0.8.
|
|
|
|
double mReversePortion;
|
2012-07-31 21:28:22 +04:00
|
|
|
|
2012-07-31 21:28:21 +04:00
|
|
|
// Compute the portion of the *value* space that we should be through
|
2014-07-16 04:02:32 +04:00
|
|
|
// at the current time. (The input to the transition timing function
|
2012-07-31 21:28:21 +04:00
|
|
|
// has time units, the output has value units.)
|
2014-07-16 04:02:32 +04:00
|
|
|
double CurrentValuePortion() const;
|
2012-07-31 21:28:21 +04:00
|
|
|
};
|
2012-07-31 21:28:22 +04:00
|
|
|
|
2015-06-30 04:00:39 +03:00
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class CSSTransition final : public Animation
|
2014-11-17 07:45:57 +03:00
|
|
|
{
|
|
|
|
public:
|
2015-04-28 11:21:58 +03:00
|
|
|
explicit CSSTransition(nsIGlobalObject* aGlobal)
|
|
|
|
: dom::Animation(aGlobal)
|
2015-07-29 04:57:40 +03:00
|
|
|
, mWasFinishedOnLastTick(false)
|
2015-09-15 05:20:33 +03:00
|
|
|
, mNeedsNewAnimationIndexWhenRun(false)
|
2014-11-17 07:45:57 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-06-30 04:00:39 +03:00
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
2015-06-09 05:13:53 +03:00
|
|
|
CSSTransition* AsCSSTransition() override { return this; }
|
|
|
|
const CSSTransition* AsCSSTransition() const override { return this; }
|
2014-11-17 07:45:57 +03:00
|
|
|
|
2015-07-01 06:27:48 +03:00
|
|
|
// CSSTransition interface
|
2015-07-01 09:19:04 +03:00
|
|
|
void GetTransitionProperty(nsString& aRetVal) const;
|
2015-07-01 06:27:48 +03:00
|
|
|
|
|
|
|
// Animation interface overrides
|
2015-06-30 04:00:39 +03:00
|
|
|
virtual AnimationPlayState PlayStateFromJS() const override;
|
2015-05-19 08:00:48 +03:00
|
|
|
virtual void PlayFromJS(ErrorResult& aRv) override;
|
2014-11-17 07:45:58 +03:00
|
|
|
|
2014-12-04 19:28:38 +03:00
|
|
|
// A variant of Play() that avoids posting style updates since this method
|
|
|
|
// is expected to be called whilst already updating style.
|
2015-05-19 08:00:48 +03:00
|
|
|
void PlayFromStyle()
|
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
DoPlay(rv, Animation::LimitBehavior::Continue);
|
|
|
|
// play() should not throw when LimitBehavior is Continue
|
|
|
|
MOZ_ASSERT(!rv.Failed(), "Unexpected exception playing transition");
|
|
|
|
}
|
2014-12-04 19:28:38 +03:00
|
|
|
|
2015-06-09 05:13:53 +03:00
|
|
|
void CancelFromStyle() override
|
|
|
|
{
|
2015-06-09 05:13:54 +03:00
|
|
|
mOwningElement = OwningElementRef();
|
2015-09-15 05:20:56 +03:00
|
|
|
|
|
|
|
// The animation index to use for compositing will be established when
|
|
|
|
// this transition next transitions out of the idle state but we still
|
|
|
|
// update it now so that the sort order of this transition remains
|
|
|
|
// defined until that moment.
|
|
|
|
//
|
|
|
|
// See longer explanation in CSSAnimation::CancelFromStyle.
|
|
|
|
mAnimationIndex = sNextAnimationIndex++;
|
|
|
|
mNeedsNewAnimationIndexWhenRun = true;
|
|
|
|
|
2015-06-09 05:13:53 +03:00
|
|
|
Animation::CancelFromStyle();
|
2015-06-09 05:13:54 +03:00
|
|
|
}
|
|
|
|
|
2015-07-29 04:57:40 +03:00
|
|
|
void Tick() override;
|
|
|
|
|
2015-06-09 05:13:54 +03:00
|
|
|
nsCSSProperty TransitionProperty() const;
|
|
|
|
|
2015-06-09 05:13:54 +03:00
|
|
|
bool HasLowerCompositeOrderThan(const Animation& aOther) const override;
|
2015-06-09 05:13:54 +03:00
|
|
|
void SetCreationSequence(uint64_t aIndex)
|
|
|
|
{
|
2015-09-15 07:32:12 +03:00
|
|
|
MOZ_ASSERT(IsTiedToMarkup());
|
2015-09-15 05:20:26 +03:00
|
|
|
mAnimationIndex = aIndex;
|
2015-06-09 05:13:53 +03:00
|
|
|
}
|
|
|
|
|
2015-06-09 05:13:54 +03:00
|
|
|
// Sets the owning element which is used for determining the composite
|
|
|
|
// oder of CSSTransition objects generated from CSS markup.
|
2015-06-09 05:13:53 +03:00
|
|
|
//
|
2015-09-15 05:20:33 +03:00
|
|
|
// @see mOwningElement
|
2015-06-09 05:13:54 +03:00
|
|
|
void SetOwningElement(const OwningElementRef& aElement)
|
2015-06-09 05:13:53 +03:00
|
|
|
{
|
2015-06-09 05:13:54 +03:00
|
|
|
mOwningElement = aElement;
|
2015-06-09 05:13:53 +03:00
|
|
|
}
|
2015-09-15 07:32:12 +03:00
|
|
|
// True for transitions that are generated from CSS markup and continue to
|
|
|
|
// reflect changes to that markup.
|
|
|
|
bool IsTiedToMarkup() const { return mOwningElement.IsSet(); }
|
2015-06-09 05:13:53 +03:00
|
|
|
|
2014-11-17 07:45:57 +03:00
|
|
|
protected:
|
2015-06-09 05:13:53 +03:00
|
|
|
virtual ~CSSTransition()
|
|
|
|
{
|
2015-06-09 05:13:54 +03:00
|
|
|
MOZ_ASSERT(!mOwningElement.IsSet(), "Owning element should be cleared "
|
|
|
|
"before a CSS transition is destroyed");
|
2015-06-09 05:13:53 +03:00
|
|
|
}
|
2014-11-17 07:45:58 +03:00
|
|
|
|
2015-09-15 05:20:56 +03:00
|
|
|
// Animation overrides
|
|
|
|
CommonAnimationManager* GetAnimationManager() const override;
|
|
|
|
void UpdateTiming(SeekFlag aSeekFlag,
|
|
|
|
SyncNotifyFlag aSyncNotifyFlag) override;
|
2015-06-09 05:13:53 +03:00
|
|
|
|
2015-07-29 04:57:40 +03:00
|
|
|
void QueueEvents();
|
2015-08-31 10:21:55 +03:00
|
|
|
bool HasEndEventToQueue() const override;
|
2015-07-29 04:57:40 +03:00
|
|
|
|
2015-06-09 05:13:53 +03:00
|
|
|
// The (pseudo-)element whose computed transition-property refers to this
|
|
|
|
// transition (if any).
|
2015-09-15 05:20:33 +03:00
|
|
|
//
|
|
|
|
// This is used for determining the relative composite order of transitions
|
|
|
|
// generated from CSS markup.
|
|
|
|
//
|
|
|
|
// Typically this will be the same as the target element of the keyframe
|
|
|
|
// effect associated with this transition. However, it can differ in the
|
|
|
|
// following circumstances:
|
|
|
|
//
|
|
|
|
// a) If script removes or replaces the effect of this transition,
|
|
|
|
// b) If this transition is cancelled (e.g. by updating the
|
|
|
|
// transition-property or removing the owning element from the document),
|
|
|
|
// c) If this object is generated from script using the CSSTransition
|
|
|
|
// constructor.
|
|
|
|
//
|
|
|
|
// For (b) and (c) the owning element will return !IsSet().
|
2015-06-09 05:13:54 +03:00
|
|
|
OwningElementRef mOwningElement;
|
2015-07-29 04:57:40 +03:00
|
|
|
|
|
|
|
bool mWasFinishedOnLastTick;
|
2015-09-15 05:20:33 +03:00
|
|
|
|
|
|
|
// When true, indicates that when this transition next leaves the idle state,
|
|
|
|
// its animation index should be updated.
|
|
|
|
bool mNeedsNewAnimationIndexWhenRun;
|
2014-11-17 07:45:57 +03:00
|
|
|
};
|
|
|
|
|
2015-06-30 04:00:39 +03:00
|
|
|
} // namespace dom
|
2015-07-29 04:57:40 +03:00
|
|
|
|
|
|
|
struct TransitionEventInfo {
|
2015-09-15 08:04:05 +03:00
|
|
|
nsRefPtr<dom::Element> mElement;
|
2015-07-29 04:57:40 +03:00
|
|
|
InternalTransitionEvent mEvent;
|
2015-09-15 08:04:53 +03:00
|
|
|
TimeStamp mTimeStamp;
|
2015-07-29 04:57:40 +03:00
|
|
|
|
2015-09-15 08:04:05 +03:00
|
|
|
TransitionEventInfo(dom::Element* aElement,
|
|
|
|
nsCSSPseudoElements::Type aPseudoType,
|
|
|
|
nsCSSProperty aProperty,
|
2015-09-15 08:04:53 +03:00
|
|
|
TimeDuration aDuration,
|
|
|
|
const TimeStamp& aTimeStamp)
|
2015-07-29 04:57:40 +03:00
|
|
|
: mElement(aElement)
|
2015-09-14 18:14:36 +03:00
|
|
|
, mEvent(true, eTransitionEnd)
|
2015-09-15 08:04:53 +03:00
|
|
|
, mTimeStamp(aTimeStamp)
|
2015-07-29 04:57:40 +03:00
|
|
|
{
|
|
|
|
// XXX Looks like nobody initialize WidgetEvent::time
|
|
|
|
mEvent.propertyName =
|
|
|
|
NS_ConvertUTF8toUTF16(nsCSSProps::GetStringValue(aProperty));
|
|
|
|
mEvent.elapsedTime = aDuration.ToSeconds();
|
|
|
|
mEvent.pseudoElement = AnimationCollection::PseudoTypeAsString(aPseudoType);
|
|
|
|
}
|
|
|
|
|
|
|
|
// InternalTransitionEvent doesn't support copy-construction, so we need
|
|
|
|
// to ourselves in order to work with nsTArray
|
2015-09-15 08:04:05 +03:00
|
|
|
TransitionEventInfo(const TransitionEventInfo& aOther)
|
2015-07-29 04:57:40 +03:00
|
|
|
: mElement(aOther.mElement)
|
2015-09-14 18:14:36 +03:00
|
|
|
, mEvent(true, eTransitionEnd)
|
2015-09-15 08:04:53 +03:00
|
|
|
, mTimeStamp(aOther.mTimeStamp)
|
2015-07-29 04:57:40 +03:00
|
|
|
{
|
|
|
|
mEvent.AssignTransitionEventData(aOther.mEvent, false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-27 03:57:12 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsTransitionManager final
|
2015-07-29 04:57:39 +03:00
|
|
|
: public mozilla::CommonAnimationManager
|
2011-04-12 10:18:43 +04:00
|
|
|
{
|
2009-10-08 07:22:42 +04:00
|
|
|
public:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsTransitionManager(nsPresContext *aPresContext)
|
2015-07-29 04:57:39 +03:00
|
|
|
: mozilla::CommonAnimationManager(aPresContext)
|
2014-08-07 09:58:44 +04:00
|
|
|
, mInAnimationOnlyStyleUpdate(false)
|
2011-04-12 10:18:43 +04:00
|
|
|
{
|
|
|
|
}
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2015-07-29 04:57:40 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsTransitionManager)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2015-07-29 04:57:39 +03:00
|
|
|
|
2015-04-21 04:22:10 +03:00
|
|
|
typedef mozilla::AnimationCollection AnimationCollection;
|
2014-06-27 03:57:12 +04:00
|
|
|
|
2009-10-08 07:22:42 +04:00
|
|
|
/**
|
2012-07-31 21:28:22 +04:00
|
|
|
* StyleContextChanged
|
2009-10-08 07:22:42 +04:00
|
|
|
*
|
|
|
|
* To be called from nsFrameManager::ReResolveStyleContext when the
|
2010-07-01 05:54:29 +04:00
|
|
|
* style of an element has changed, to initiate transitions from
|
|
|
|
* that style change. For style contexts with :before and :after
|
|
|
|
* pseudos, aElement is expected to be the generated before/after
|
|
|
|
* element.
|
2009-10-08 07:22:42 +04:00
|
|
|
*
|
2015-02-17 01:15:02 +03:00
|
|
|
* It may modify the new style context (by replacing
|
|
|
|
* *aNewStyleContext) to cover up some of the changes for the duration
|
|
|
|
* of the restyling of descendants. If it does, this function will
|
|
|
|
* take care of causing the necessary restyle afterwards.
|
2009-10-08 07:22:42 +04:00
|
|
|
*/
|
2015-02-17 01:15:02 +03:00
|
|
|
void StyleContextChanged(mozilla::dom::Element *aElement,
|
|
|
|
nsStyleContext *aOldStyleContext,
|
|
|
|
nsRefPtr<nsStyleContext>* aNewStyleContext /* inout */);
|
2009-10-08 07:22:42 +04:00
|
|
|
|
Bug 1144410 - Remove finished transitions when a frame transitions away from being display:none. r=birtles
Since bug 960465 patch 14, we've retained finished transitions in order
to handle the issues described in
https://lists.w3.org/Archives/Public/www-style/2015Jan/0444.html . The
code that did this made the assumption that the transition manager is
notified of the full sequence of style changes that happen to an
element. However, when an element becomes part of a display:none
subtree and then later becomes displayed again, the transition manager
is not notified of a style change when it becomes displayed again (when
we do not have the old style context).
This patch introduces code to prune the finished transitions when that
happens.
This really fixes only part of the set of problems described in bug
1158431, which also affect running transitions. However, it's the part
of that set that was a regression from bug 960465, which introduced the
retention of finished transitions, and which makes these issues
substantially easier to hit.
I'd like to fix this part quickly because it's a regression and we
should backport the fix.
Without the patch, I confirmed that the following two tests fail:
INFO TEST-UNEXPECTED-FAIL | layout/style/test/test_transitions_dynamic_changes.html | bug 1144410 test - opacity after starting second transition - got 0, expected 1
INFO TEST-UNEXPECTED-FAIL | layout/style/test/test_transitions_dynamic_changes.html | bug 1144410 test - opacity during second transition - got 0, expected 0.5
With the patch, all the added tests pass.
--HG--
extra : transplant_source : %B4%A5%5Ck%E1%B7%F5Et%CF%9B%9F%40%97c%C5NM%D3%A8
2015-04-27 05:20:19 +03:00
|
|
|
/**
|
|
|
|
* When we're resolving style for an element that previously didn't have
|
|
|
|
* style, we might have some old finished transitions for it, if,
|
|
|
|
* say, it was display:none for a while, but previously displayed.
|
|
|
|
*
|
|
|
|
* This method removes any finished transitions that don't match the
|
|
|
|
* new style.
|
|
|
|
*/
|
|
|
|
void PruneCompletedTransitions(mozilla::dom::Element* aElement,
|
|
|
|
nsCSSPseudoElements::Type aPseudoType,
|
|
|
|
nsStyleContext* aNewStyleContext);
|
|
|
|
|
2015-04-21 04:22:10 +03:00
|
|
|
void UpdateCascadeResultsWithTransitions(AnimationCollection* aTransitions);
|
|
|
|
void UpdateCascadeResultsWithAnimations(AnimationCollection* aAnimations);
|
2015-03-20 07:10:00 +03:00
|
|
|
void UpdateCascadeResultsWithAnimationsToBeDestroyed(
|
2015-04-21 04:22:10 +03:00
|
|
|
const AnimationCollection* aAnimations);
|
|
|
|
void UpdateCascadeResults(AnimationCollection* aTransitions,
|
|
|
|
AnimationCollection* aAnimations);
|
2015-03-20 07:10:00 +03:00
|
|
|
|
2014-08-07 09:58:44 +04:00
|
|
|
void SetInAnimationOnlyStyleUpdate(bool aInAnimationOnlyUpdate) {
|
|
|
|
mInAnimationOnlyStyleUpdate = aInAnimationOnlyUpdate;
|
|
|
|
}
|
|
|
|
|
2015-02-17 01:15:04 +03:00
|
|
|
bool InAnimationOnlyStyleUpdate() const {
|
|
|
|
return mInAnimationOnlyStyleUpdate;
|
|
|
|
}
|
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
virtual size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
|
2015-03-21 19:28:04 +03:00
|
|
|
MOZ_MUST_OVERRIDE override;
|
2013-06-23 16:03:39 +04:00
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
|
2015-03-21 19:28:04 +03:00
|
|
|
MOZ_MUST_OVERRIDE override;
|
2009-10-08 07:22:42 +04:00
|
|
|
|
2015-07-29 04:57:40 +03:00
|
|
|
void QueueEvent(mozilla::TransitionEventInfo&& aEventInfo)
|
|
|
|
{
|
|
|
|
mEventDispatcher.QueueEvent(
|
|
|
|
mozilla::Forward<mozilla::TransitionEventInfo>(aEventInfo));
|
|
|
|
}
|
|
|
|
|
2015-07-29 04:57:40 +03:00
|
|
|
void DispatchEvents() { mEventDispatcher.DispatchEvents(mPresContext); }
|
2015-07-29 04:57:40 +03:00
|
|
|
void ClearEventQueue() { mEventDispatcher.ClearEventQueue(); }
|
|
|
|
|
2014-11-20 05:48:41 +03:00
|
|
|
protected:
|
2015-07-29 04:57:40 +03:00
|
|
|
virtual ~nsTransitionManager() {}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetAnimationsAtom() override {
|
2014-11-20 05:48:41 +03:00
|
|
|
return nsGkAtoms::transitionsProperty;
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetAnimationsBeforeAtom() override {
|
2014-11-20 05:48:41 +03:00
|
|
|
return nsGkAtoms::transitionsOfBeforeProperty;
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetAnimationsAfterAtom() override {
|
2014-11-20 05:48:41 +03:00
|
|
|
return nsGkAtoms::transitionsOfAfterProperty;
|
|
|
|
}
|
2013-10-22 16:14:41 +04:00
|
|
|
|
2009-10-08 07:22:42 +04:00
|
|
|
private:
|
2014-06-27 03:57:12 +04:00
|
|
|
void
|
|
|
|
ConsiderStartingTransition(nsCSSProperty aProperty,
|
|
|
|
const mozilla::StyleTransition& aTransition,
|
|
|
|
mozilla::dom::Element* aElement,
|
2015-04-21 04:22:10 +03:00
|
|
|
AnimationCollection*& aElementTransitions,
|
2014-06-27 03:57:12 +04:00
|
|
|
nsStyleContext* aOldStyleContext,
|
|
|
|
nsStyleContext* aNewStyleContext,
|
|
|
|
bool* aStartedAny,
|
|
|
|
nsCSSPropertySet* aWhichStarted);
|
2014-08-07 09:58:44 +04:00
|
|
|
|
|
|
|
bool mInAnimationOnlyStyleUpdate;
|
2015-07-29 04:57:40 +03:00
|
|
|
|
|
|
|
mozilla::DelayedEventDispatcher<mozilla::TransitionEventInfo>
|
|
|
|
mEventDispatcher;
|
2009-10-08 07:22:42 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsTransitionManager_h_) */
|