2015-12-04 02:32:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "AnimationUtils.h"
|
|
|
|
|
2020-05-06 01:40:57 +03:00
|
|
|
#include "mozilla/dom/Animation.h"
|
2019-01-08 09:45:18 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
|
|
|
#include "mozilla/dom/KeyframeEffect.h"
|
|
|
|
#include "mozilla/EffectSet.h"
|
2015-12-04 02:32:53 +03:00
|
|
|
#include "nsDebug.h"
|
2017-10-03 01:05:19 +03:00
|
|
|
#include "nsAtom.h"
|
2015-12-04 02:32:53 +03:00
|
|
|
#include "nsIContent.h"
|
2016-03-11 11:20:17 +03:00
|
|
|
#include "nsGlobalWindow.h"
|
2015-12-04 02:32:53 +03:00
|
|
|
#include "nsString.h"
|
2016-03-11 11:21:03 +03:00
|
|
|
#include "xpcpublic.h" // For xpc::NativeGlobal
|
2015-12-04 02:32:53 +03:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2015-12-04 02:32:53 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
void AnimationUtils::LogAsyncAnimationFailure(nsCString& aMessage,
|
|
|
|
const nsIContent* aContent) {
|
2015-12-04 02:32:53 +03:00
|
|
|
if (aContent) {
|
|
|
|
aMessage.AppendLiteral(" [");
|
|
|
|
aMessage.Append(nsAtomCString(aContent->NodeInfo()->NameAtom()));
|
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* id = aContent->GetID();
|
2015-12-04 02:32:53 +03:00
|
|
|
if (id) {
|
|
|
|
aMessage.AppendLiteral(" with id '");
|
|
|
|
aMessage.Append(nsAtomCString(aContent->GetID()));
|
|
|
|
aMessage.Append('\'');
|
|
|
|
}
|
|
|
|
aMessage.Append(']');
|
|
|
|
}
|
|
|
|
aMessage.Append('\n');
|
|
|
|
printf_stderr("%s", aMessage.get());
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
Document* AnimationUtils::GetCurrentRealmDocument(JSContext* aCx) {
|
2017-11-04 01:25:38 +03:00
|
|
|
nsGlobalWindowInner* win = xpc::CurrentWindowOrNull(aCx);
|
2016-03-11 11:20:17 +03:00
|
|
|
if (!win) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return win->GetDoc();
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
Document* AnimationUtils::GetDocumentFromGlobal(JSObject* aGlobalObject) {
|
Bug 1414674 - Do not enter the compartment of the target window when calling KeyframeEffect and KeyframeEffectReadOnly constructor via Xray. r=bz,birtles
KeyframeEffect and KeyframeEffectReadOnly constructors can run in the caller
compartment, which is okay because the current compartment is used in the
following places and all of them are safe:
1. GlobalObject::CallerType(), that is ultimately passed to
nsDocument::IsWebAnimationsEnabled in KeyframeEffectParamsFromUnion,
to decide whether to copy mIterationComposite/mComposite to
KeyframeEffectParams.
GlobalObject::CallerType() can now be different than the target window's one,
if the caller has the system principal and the target is web content, and
in that case nsDocument::IsWebAnimationsEnabled there always returns true
while Web Animations can be disabled on web content.
honoring the mIterationComposite/mComposite properties is OK, since it just
changes the animation behavior, and this is disabled by default until
remaining spec issues are resolved.
2. GlobalObject::Context(), that is ultimately passed to
KeyframeUtils::GetKeyframesFromObject and used while extracting information
from passed-in keyframe object, with iterable/iterator protocols.
Performing that operation in the caller side is okay, since the same thing
can be done on caller, and the operation doesn't perform any GCThing
allocation on the target window global.
2018-02-17 11:21:13 +03:00
|
|
|
nsGlobalWindowInner* win = xpc::WindowOrNull(aGlobalObject);
|
|
|
|
if (!win) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return win->GetDoc();
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
2019-03-18 07:12:10 +03:00
|
|
|
bool AnimationUtils::FrameHasAnimatedScale(const nsIFrame* aFrame) {
|
|
|
|
EffectSet* effectSet = EffectSet::GetEffectSetForFrame(
|
|
|
|
aFrame, nsCSSPropertyIDSet::TransformLikeProperties());
|
|
|
|
if (!effectSet) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const dom::KeyframeEffect* effect : *effectSet) {
|
2017-02-09 05:28:47 +03:00
|
|
|
if (effect->ContainsAnimatedScale(aFrame)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-18 07:09:55 +03:00
|
|
|
/* static */
|
|
|
|
bool AnimationUtils::HasCurrentTransitions(const Element* aElement,
|
|
|
|
PseudoStyleType aPseudoType) {
|
|
|
|
MOZ_ASSERT(aElement);
|
|
|
|
|
|
|
|
EffectSet* effectSet = EffectSet::GetEffectSet(aElement, aPseudoType);
|
|
|
|
if (!effectSet) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const dom::KeyframeEffect* effect : *effectSet) {
|
|
|
|
// If |effect| is current, it must have an associated Animation
|
|
|
|
// so we don't need to null-check the result of GetAnimation().
|
|
|
|
if (effect->IsCurrent() && effect->GetAnimation()->AsCSSTransition()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-04 02:32:53 +03:00
|
|
|
} // namespace mozilla
|