diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 11:45:38 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 11:45:38 +0100 |
commit | aade91b13a50ee4f246016fa8d8d1561f58f80ee (patch) | |
tree | 5deac61e124e06478040bedfbb1784b68fc8cc97 /dom/animation/ComputedTiming.h | |
parent | dcc00ffadf64270b0ae82431f5b71c527590e91b (diff) | |
download | UXP-aade91b13a50ee4f246016fa8d8d1561f58f80ee.tar UXP-aade91b13a50ee4f246016fa8d8d1561f58f80ee.tar.gz UXP-aade91b13a50ee4f246016fa8d8d1561f58f80ee.tar.lz UXP-aade91b13a50ee4f246016fa8d8d1561f58f80ee.tar.xz UXP-aade91b13a50ee4f246016fa8d8d1561f58f80ee.zip |
moebius#89: DOM - implement animationcancel event
Issue #55
Diffstat (limited to 'dom/animation/ComputedTiming.h')
-rw-r--r-- | dom/animation/ComputedTiming.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/animation/ComputedTiming.h b/dom/animation/ComputedTiming.h index addf15865..525d59d23 100644 --- a/dom/animation/ComputedTiming.h +++ b/dom/animation/ComputedTiming.h @@ -64,12 +64,12 @@ struct ComputedTiming } enum class AnimationPhase { - Null, // Not sampled (null sample time) + Idle, // Not sampled (null sample time) Before, // Sampled prior to the start of the active interval Active, // Sampled within the active interval After // Sampled after (or at) the end of the active interval }; - AnimationPhase mPhase = AnimationPhase::Null; + AnimationPhase mPhase = AnimationPhase::Idle; ComputedTimingFunction::BeforeFlag mBeforeFlag = ComputedTimingFunction::BeforeFlag::Unset; |