2015-05-03 22:32:37 +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: */
|
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-03 01:37:25 +04:00
|
|
|
|
|
|
|
/* representation of a value for a SMIL-animated CSS property */
|
|
|
|
|
|
|
|
#include "nsSMILCSSValueType.h"
|
2017-04-03 10:49:27 +03:00
|
|
|
|
|
|
|
#include "nsComputedDOMStyle.h"
|
2009-10-03 01:37:25 +04:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsSMILParserUtils.h"
|
|
|
|
#include "nsSMILValue.h"
|
2017-04-26 07:00:12 +03:00
|
|
|
#include "nsCSSProps.h"
|
2009-10-03 01:37:25 +04:00
|
|
|
#include "nsCSSValue.h"
|
|
|
|
#include "nsColor.h"
|
|
|
|
#include "nsPresContext.h"
|
2017-04-26 07:00:12 +03:00
|
|
|
#include "mozilla/ServoBindings.h"
|
|
|
|
#include "mozilla/StyleAnimationValue.h" // For AnimationValue
|
2017-12-01 12:35:47 +03:00
|
|
|
#include "mozilla/ServoCSSParser.h"
|
2017-04-26 07:00:12 +03:00
|
|
|
#include "mozilla/StyleSetHandleInlines.h"
|
2017-06-02 09:18:47 +03:00
|
|
|
#include "mozilla/dom/BaseKeyframeTypesBinding.h" // For CompositeOperation
|
2011-03-28 20:49:11 +04:00
|
|
|
#include "mozilla/dom/Element.h"
|
2009-10-03 01:37:25 +04:00
|
|
|
#include "nsDebug.h"
|
2012-08-30 21:58:24 +04:00
|
|
|
#include "nsStyleUtil.h"
|
2013-10-03 00:09:18 +04:00
|
|
|
#include "nsIDocument.h"
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2011-03-28 20:49:11 +04:00
|
|
|
using namespace mozilla::dom;
|
2014-06-24 10:29:54 +04:00
|
|
|
using mozilla::StyleAnimationValue;
|
2011-03-28 20:49:11 +04:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
typedef AutoTArray<RefPtr<RawServoAnimationValue>, 1> ServoAnimationValues;
|
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
/*static*/ nsSMILCSSValueType nsSMILCSSValueType::sSingleton;
|
|
|
|
|
|
|
|
struct ValueWrapper {
|
2017-04-26 07:00:12 +03:00
|
|
|
ValueWrapper(nsCSSPropertyID aPropID, const AnimationValue& aValue)
|
2017-06-09 00:19:37 +03:00
|
|
|
: mPropID(aPropID)
|
|
|
|
{
|
|
|
|
if (aValue.mServo) {
|
2017-06-09 00:19:37 +03:00
|
|
|
mServoValues.AppendElement(aValue.mServo);
|
2017-06-09 00:19:37 +03:00
|
|
|
return;
|
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
mGeckoValue = aValue.mGecko;
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-04-26 07:00:12 +03:00
|
|
|
ValueWrapper(nsCSSPropertyID aPropID, const StyleAnimationValue& aValue)
|
2017-06-09 00:19:37 +03:00
|
|
|
: mPropID(aPropID), mGeckoValue(aValue) {}
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2017-04-26 07:00:12 +03:00
|
|
|
ValueWrapper(nsCSSPropertyID aPropID,
|
|
|
|
const RefPtr<RawServoAnimationValue>& aValue)
|
2017-06-09 00:19:37 +03:00
|
|
|
: mPropID(aPropID), mServoValues{(aValue)} {}
|
2017-06-09 00:19:37 +03:00
|
|
|
ValueWrapper(nsCSSPropertyID aPropID, ServoAnimationValues&& aValues)
|
|
|
|
: mPropID(aPropID), mServoValues{aValues} {}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
|
|
|
bool operator==(const ValueWrapper& aOther) const
|
|
|
|
{
|
|
|
|
if (mPropID != aOther.mPropID) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!mServoValues.IsEmpty()) {
|
|
|
|
size_t len = mServoValues.Length();
|
|
|
|
if (len != aOther.mServoValues.Length()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
if (!Servo_AnimationValue_DeepEqual(mServoValues[i],
|
|
|
|
aOther.mServoValues[i])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
return mGeckoValue == aOther.mGeckoValue;
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const ValueWrapper& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2016-08-10 02:28:19 +03:00
|
|
|
nsCSSPropertyID mPropID;
|
2017-06-09 00:19:37 +03:00
|
|
|
ServoAnimationValues mServoValues;
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
StyleAnimationValue mGeckoValue;
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Helper Methods
|
|
|
|
// --------------
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
static const StyleAnimationValue*
|
2014-06-24 10:29:54 +04:00
|
|
|
GetZeroValueForUnit(StyleAnimationValue::Unit aUnit)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2017-06-09 00:19:37 +03:00
|
|
|
static const StyleAnimationValue
|
|
|
|
sZeroCoord(0, StyleAnimationValue::CoordConstructor);
|
|
|
|
static const StyleAnimationValue
|
|
|
|
sZeroPercent(0.0f, StyleAnimationValue::PercentConstructor);
|
|
|
|
static const StyleAnimationValue
|
|
|
|
sZeroFloat(0.0f, StyleAnimationValue::FloatConstructor);
|
|
|
|
static const StyleAnimationValue
|
|
|
|
sZeroColor(NS_RGB(0,0,0), StyleAnimationValue::ColorConstructor);
|
2014-06-24 10:29:54 +04:00
|
|
|
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aUnit != StyleAnimationValue::eUnit_Null,
|
|
|
|
"Need non-null unit for a zero value");
|
2009-10-03 01:37:25 +04:00
|
|
|
switch (aUnit) {
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Coord:
|
2009-10-03 01:37:25 +04:00
|
|
|
return &sZeroCoord;
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Percent:
|
2009-10-03 01:37:25 +04:00
|
|
|
return &sZeroPercent;
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Float:
|
2009-10-20 15:46:16 +04:00
|
|
|
return &sZeroFloat;
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Color:
|
2009-10-03 01:37:25 +04:00
|
|
|
return &sZeroColor;
|
|
|
|
default:
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2010-11-06 22:13:01 +03:00
|
|
|
// If one argument is null, this method updates it to point to "zero"
|
2011-10-17 18:59:28 +04:00
|
|
|
// for the other argument's Unit (if applicable; otherwise, we return false).
|
2010-11-06 22:13:01 +03:00
|
|
|
//
|
2017-10-02 08:03:53 +03:00
|
|
|
// If neither argument is null, this method simply returns true.
|
|
|
|
//
|
|
|
|
// If both arguments are null, this method returns false.
|
2010-11-06 22:13:01 +03:00
|
|
|
//
|
2017-06-09 00:19:37 +03:00
|
|
|
// |aZeroValueStorage| should be a reference to a RefPtr<RawServoAnimationValue>.
|
|
|
|
// This is used where we may need to allocate a new ServoAnimationValue to
|
2017-06-05 04:28:17 +03:00
|
|
|
// represent the appropriate zero value.
|
|
|
|
//
|
2017-06-09 00:19:37 +03:00
|
|
|
// Returns true on success, or otherwise.
|
2016-01-06 04:08:45 +03:00
|
|
|
static bool
|
2017-06-09 00:19:37 +03:00
|
|
|
FinalizeServoAnimationValues(const RefPtr<RawServoAnimationValue>*& aValue1,
|
|
|
|
const RefPtr<RawServoAnimationValue>*& aValue2,
|
|
|
|
RefPtr<RawServoAnimationValue>& aZeroValueStorage)
|
2010-11-06 22:13:01 +03:00
|
|
|
{
|
2017-10-02 08:03:53 +03:00
|
|
|
if (!aValue1 && !aValue2) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-26 07:00:12 +03:00
|
|
|
|
2017-06-05 04:28:17 +03:00
|
|
|
// Are we missing either val? (If so, it's an implied 0 in other val's units)
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!aValue1) {
|
|
|
|
aZeroValueStorage = Servo_AnimationValues_GetZeroValue(*aValue2).Consume();
|
|
|
|
aValue1 = &aZeroValueStorage;
|
|
|
|
} else if (!aValue2) {
|
|
|
|
aZeroValueStorage = Servo_AnimationValues_GetZeroValue(*aValue1).Consume();
|
|
|
|
aValue2 = &aZeroValueStorage;
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
return *aValue1 && *aValue2;
|
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
static bool
|
|
|
|
FinalizeStyleAnimationValues(const StyleAnimationValue*& aValue1,
|
|
|
|
const StyleAnimationValue*& aValue2)
|
|
|
|
{
|
2017-10-02 08:03:53 +03:00
|
|
|
if (!aValue1 && !aValue2) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-06 22:13:01 +03:00
|
|
|
|
|
|
|
if (!aValue1) {
|
2017-06-09 00:19:37 +03:00
|
|
|
aValue1 = GetZeroValueForUnit(aValue2->GetUnit());
|
2010-11-06 22:13:01 +03:00
|
|
|
return !!aValue1; // Fail if we have no zero value for this unit.
|
|
|
|
}
|
|
|
|
if (!aValue2) {
|
2017-06-09 00:19:37 +03:00
|
|
|
aValue2 = GetZeroValueForUnit(aValue1->GetUnit());
|
2010-11-06 22:13:01 +03:00
|
|
|
return !!aValue2; // Fail if we have no zero value for this unit.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, both values were specified.
|
|
|
|
// Need to handle a special-case, though: unitless nonzero length (parsed as
|
|
|
|
// eUnit_Float) mixed with unitless 0 length (parsed as eUnit_Coord). These
|
2014-06-24 10:29:54 +04:00
|
|
|
// won't interoperate in StyleAnimationValue, since their Units don't match.
|
2010-11-06 22:13:01 +03:00
|
|
|
// In this case, we replace the eUnit_Coord 0 value with eUnit_Float 0 value.
|
2017-06-09 00:19:37 +03:00
|
|
|
const StyleAnimationValue& zeroCoord =
|
2014-06-24 10:29:54 +04:00
|
|
|
*GetZeroValueForUnit(StyleAnimationValue::eUnit_Coord);
|
2013-08-14 16:45:49 +04:00
|
|
|
if (*aValue1 == zeroCoord &&
|
2017-06-09 00:19:37 +03:00
|
|
|
aValue2->GetUnit() == StyleAnimationValue::eUnit_Float) {
|
2014-06-24 10:29:54 +04:00
|
|
|
aValue1 = GetZeroValueForUnit(StyleAnimationValue::eUnit_Float);
|
2013-08-14 16:45:49 +04:00
|
|
|
} else if (*aValue2 == zeroCoord &&
|
2017-06-09 00:19:37 +03:00
|
|
|
aValue1->GetUnit() == StyleAnimationValue::eUnit_Float) {
|
2014-06-24 10:29:54 +04:00
|
|
|
aValue2 = GetZeroValueForUnit(StyleAnimationValue::eUnit_Float);
|
2010-11-06 22:13:01 +03:00
|
|
|
}
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-11-06 22:13:01 +03:00
|
|
|
}
|
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
static void
|
2014-06-24 10:29:54 +04:00
|
|
|
InvertSign(StyleAnimationValue& aValue)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2010-11-06 22:13:01 +03:00
|
|
|
switch (aValue.GetUnit()) {
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Coord:
|
2010-11-06 22:13:01 +03:00
|
|
|
aValue.SetCoordValue(-aValue.GetCoordValue());
|
2009-10-03 01:37:25 +04:00
|
|
|
break;
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Percent:
|
2010-11-06 22:13:01 +03:00
|
|
|
aValue.SetPercentValue(-aValue.GetPercentValue());
|
2009-10-03 01:37:25 +04:00
|
|
|
break;
|
2014-06-24 10:29:54 +04:00
|
|
|
case StyleAnimationValue::eUnit_Float:
|
2010-11-06 22:13:01 +03:00
|
|
|
aValue.SetFloatValue(-aValue.GetFloatValue());
|
2009-10-09 05:30:50 +04:00
|
|
|
break;
|
2009-10-03 01:37:25 +04:00
|
|
|
default:
|
2009-10-20 15:46:16 +04:00
|
|
|
NS_NOTREACHED("Calling InvertSign with an unsupported unit");
|
2009-10-03 01:37:25 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
static ValueWrapper*
|
|
|
|
ExtractValueWrapper(nsSMILValue& aValue)
|
|
|
|
{
|
|
|
|
return static_cast<ValueWrapper*>(aValue.mU.mPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const ValueWrapper*
|
|
|
|
ExtractValueWrapper(const nsSMILValue& aValue)
|
|
|
|
{
|
|
|
|
return static_cast<const ValueWrapper*>(aValue.mU.mPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Class methods
|
|
|
|
// -------------
|
2010-03-22 21:57:36 +03:00
|
|
|
void
|
2009-10-03 01:37:25 +04:00
|
|
|
nsSMILCSSValueType::Init(nsSMILValue& aValue) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValue.IsNull(), "Unexpected SMIL value type");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
aValue.mU.mPtr = nullptr;
|
2009-10-03 01:37:25 +04:00
|
|
|
aValue.mType = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsSMILCSSValueType::Destroy(nsSMILValue& aValue) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValue.mType == this, "Unexpected SMIL value type");
|
2009-10-03 01:37:25 +04:00
|
|
|
delete static_cast<ValueWrapper*>(aValue.mU.mPtr);
|
2013-05-31 02:34:53 +04:00
|
|
|
aValue.mType = nsSMILNullType::Singleton();
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::Assign(nsSMILValue& aDest, const nsSMILValue& aSrc) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aDest.mType == aSrc.mType, "Incompatible SMIL types");
|
|
|
|
MOZ_ASSERT(aDest.mType == this, "Unexpected SMIL value type");
|
2009-10-03 01:37:25 +04:00
|
|
|
const ValueWrapper* srcWrapper = ExtractValueWrapper(aSrc);
|
|
|
|
ValueWrapper* destWrapper = ExtractValueWrapper(aDest);
|
2009-12-10 20:26:28 +03:00
|
|
|
|
|
|
|
if (srcWrapper) {
|
|
|
|
if (!destWrapper) {
|
|
|
|
// barely-initialized dest -- need to alloc & copy
|
|
|
|
aDest.mU.mPtr = new ValueWrapper(*srcWrapper);
|
|
|
|
} else {
|
|
|
|
// both already fully-initialized -- just copy straight across
|
|
|
|
*destWrapper = *srcWrapper;
|
|
|
|
}
|
|
|
|
} else if (destWrapper) {
|
|
|
|
// fully-initialized dest, barely-initialized src -- clear dest
|
|
|
|
delete destWrapper;
|
2012-07-30 18:20:58 +04:00
|
|
|
aDest.mU.mPtr = destWrapper = nullptr;
|
2009-12-10 20:26:28 +03:00
|
|
|
} // else, both are barely-initialized -- nothing to do.
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-02-21 00:13:11 +03:00
|
|
|
nsSMILCSSValueType::IsEqual(const nsSMILValue& aLeft,
|
|
|
|
const nsSMILValue& aRight) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aLeft.mType == aRight.mType, "Incompatible SMIL types");
|
|
|
|
MOZ_ASSERT(aLeft.mType == this, "Unexpected SMIL value");
|
2010-02-21 00:13:11 +03:00
|
|
|
const ValueWrapper* leftWrapper = ExtractValueWrapper(aLeft);
|
|
|
|
const ValueWrapper* rightWrapper = ExtractValueWrapper(aRight);
|
|
|
|
|
|
|
|
if (leftWrapper) {
|
|
|
|
if (rightWrapper) {
|
|
|
|
// Both non-null
|
2016-09-01 08:01:16 +03:00
|
|
|
NS_WARNING_ASSERTION(leftWrapper != rightWrapper,
|
|
|
|
"Two nsSMILValues with matching ValueWrapper ptr");
|
2017-06-09 00:19:37 +03:00
|
|
|
return *leftWrapper == *rightWrapper;
|
2010-02-21 00:13:11 +03:00
|
|
|
}
|
|
|
|
// Left non-null, right null
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-21 00:13:11 +03:00
|
|
|
}
|
|
|
|
if (rightWrapper) {
|
|
|
|
// Left null, right non-null
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-21 00:13:11 +03:00
|
|
|
}
|
|
|
|
// Both null
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-02-21 00:13:11 +03:00
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
static bool
|
|
|
|
AddOrAccumulateForServo(nsSMILValue& aDest,
|
|
|
|
const ValueWrapper* aValueToAddWrapper,
|
|
|
|
ValueWrapper* aDestWrapper,
|
|
|
|
CompositeOperation aCompositeOp,
|
|
|
|
uint64_t aCount)
|
|
|
|
{
|
|
|
|
nsCSSPropertyID property = aValueToAddWrapper
|
|
|
|
? aValueToAddWrapper->mPropID
|
|
|
|
: aDestWrapper->mPropID;
|
2017-06-09 00:19:37 +03:00
|
|
|
size_t len = aValueToAddWrapper
|
|
|
|
? aValueToAddWrapper->mServoValues.Length()
|
|
|
|
: aDestWrapper->mServoValues.Length();
|
|
|
|
|
|
|
|
MOZ_ASSERT(!aValueToAddWrapper || !aDestWrapper ||
|
|
|
|
aValueToAddWrapper->mServoValues.Length() ==
|
|
|
|
aDestWrapper->mServoValues.Length(),
|
2017-10-02 08:03:53 +03:00
|
|
|
"Both of values' length in the wrappers should be the same if "
|
2017-06-09 00:19:37 +03:00
|
|
|
"both of them exist");
|
|
|
|
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
const RefPtr<RawServoAnimationValue>* valueToAdd =
|
|
|
|
aValueToAddWrapper
|
|
|
|
? &aValueToAddWrapper->mServoValues[i]
|
|
|
|
: nullptr;
|
|
|
|
const RefPtr<RawServoAnimationValue>* destValue =
|
|
|
|
aDestWrapper
|
|
|
|
? &aDestWrapper->mServoValues[i]
|
|
|
|
: nullptr;
|
|
|
|
RefPtr<RawServoAnimationValue> zeroValueStorage;
|
|
|
|
if (!FinalizeServoAnimationValues(valueToAdd, destValue, zeroValueStorage)) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
// FinalizeServoAnimationValues may have updated destValue so we should make
|
|
|
|
// sure the aDest and aDestWrapper outparams are up-to-date.
|
|
|
|
if (aDestWrapper) {
|
|
|
|
aDestWrapper->mServoValues[i] = *destValue;
|
|
|
|
} else {
|
|
|
|
// aDest may be a barely-initialized "zero" destination.
|
|
|
|
aDest.mU.mPtr = aDestWrapper = new ValueWrapper(property, *destValue);
|
|
|
|
aDestWrapper->mServoValues.SetLength(len);
|
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
RefPtr<RawServoAnimationValue> result;
|
|
|
|
if (aCompositeOp == CompositeOperation::Add) {
|
|
|
|
result = Servo_AnimationValues_Add(*destValue, *valueToAdd).Consume();
|
|
|
|
} else {
|
|
|
|
result = Servo_AnimationValues_Accumulate(*destValue,
|
|
|
|
*valueToAdd,
|
|
|
|
aCount).Consume();
|
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!result) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aDestWrapper->mServoValues[i] = result;
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
|
|
|
return true;
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
|
|
|
|
2017-06-02 09:18:47 +03:00
|
|
|
static bool
|
|
|
|
AddOrAccumulate(nsSMILValue& aDest, const nsSMILValue& aValueToAdd,
|
|
|
|
CompositeOperation aCompositeOp, uint64_t aCount)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValueToAdd.mType == aDest.mType,
|
2017-06-02 09:18:47 +03:00
|
|
|
"Trying to add mismatching types");
|
|
|
|
MOZ_ASSERT(aValueToAdd.mType == &nsSMILCSSValueType::sSingleton,
|
|
|
|
"Unexpected SMIL value type");
|
|
|
|
MOZ_ASSERT(aCompositeOp == CompositeOperation::Add ||
|
|
|
|
aCompositeOp == CompositeOperation::Accumulate,
|
|
|
|
"Composite operation should be add or accumulate");
|
|
|
|
MOZ_ASSERT(aCompositeOp != CompositeOperation::Add || aCount == 1,
|
|
|
|
"Count should be 1 if composite operation is add");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
ValueWrapper* destWrapper = ExtractValueWrapper(aDest);
|
|
|
|
const ValueWrapper* valueToAddWrapper = ExtractValueWrapper(aValueToAdd);
|
2017-10-02 08:03:53 +03:00
|
|
|
|
|
|
|
// If both of the values are empty just fail. This can happen in rare cases
|
|
|
|
// such as when the underlying animation produced an empty value.
|
|
|
|
//
|
|
|
|
// Technically, it doesn't matter what we return here since in either case it
|
|
|
|
// will produce the same result: an empty value.
|
|
|
|
if (!destWrapper && !valueToAddWrapper) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2017-06-02 09:16:48 +03:00
|
|
|
nsCSSPropertyID property = valueToAddWrapper
|
|
|
|
? valueToAddWrapper->mPropID
|
|
|
|
: destWrapper->mPropID;
|
2009-12-10 20:26:28 +03:00
|
|
|
// Special case: font-size-adjust and stroke-dasharray are explicitly
|
2014-06-24 10:29:54 +04:00
|
|
|
// non-additive (even though StyleAnimationValue *could* support adding them)
|
2009-12-10 20:26:28 +03:00
|
|
|
if (property == eCSSProperty_font_size_adjust ||
|
|
|
|
property == eCSSProperty_stroke_dasharray) {
|
2017-06-02 09:18:47 +03:00
|
|
|
return false;
|
2009-12-10 20:26:28 +03:00
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
// Skip font shorthand since it includes font-size-adjust.
|
|
|
|
if (property == eCSSProperty_font) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
bool isServo = valueToAddWrapper
|
2017-06-09 00:19:37 +03:00
|
|
|
? !valueToAddWrapper->mServoValues.IsEmpty()
|
|
|
|
: !destWrapper->mServoValues.IsEmpty();
|
2017-06-09 00:19:37 +03:00
|
|
|
if (isServo) {
|
|
|
|
return AddOrAccumulateForServo(aDest,
|
|
|
|
valueToAddWrapper,
|
|
|
|
destWrapper,
|
|
|
|
aCompositeOp,
|
|
|
|
aCount);
|
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
const StyleAnimationValue* valueToAdd = valueToAddWrapper ?
|
|
|
|
&valueToAddWrapper->mGeckoValue : nullptr;
|
|
|
|
const StyleAnimationValue* destValue = destWrapper ?
|
|
|
|
&destWrapper->mGeckoValue : nullptr;
|
|
|
|
if (!FinalizeStyleAnimationValues(valueToAdd, destValue)) {
|
2017-06-02 09:18:47 +03:00
|
|
|
return false;
|
2009-12-10 20:26:28 +03:00
|
|
|
}
|
2010-11-06 22:13:01 +03:00
|
|
|
// Did FinalizeStyleAnimationValues change destValue?
|
|
|
|
// If so, update outparam to use the new value.
|
2017-06-09 00:19:37 +03:00
|
|
|
if (destWrapper && &destWrapper->mGeckoValue != destValue) {
|
|
|
|
destWrapper->mGeckoValue = *destValue;
|
2010-11-06 22:13:01 +03:00
|
|
|
}
|
2009-12-10 20:26:28 +03:00
|
|
|
|
|
|
|
// Handle barely-initialized "zero" destination.
|
|
|
|
if (!destWrapper) {
|
2017-04-26 07:00:12 +03:00
|
|
|
aDest.mU.mPtr = destWrapper = new ValueWrapper(property, *destValue);
|
|
|
|
}
|
|
|
|
|
2017-06-02 09:18:47 +03:00
|
|
|
// For Gecko, we currently call Add for either composite mode.
|
|
|
|
//
|
|
|
|
// This is not ideal, but it doesn't make any difference for the set of
|
|
|
|
// properties we currently allow adding in SMIL and this code path will
|
|
|
|
// hopefully become obsolete before we expand that set.
|
2017-06-09 00:19:37 +03:00
|
|
|
return StyleAnimationValue::Add(property,
|
|
|
|
destWrapper->mGeckoValue,
|
2017-07-18 10:24:28 +03:00
|
|
|
*valueToAdd, aCount);
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2017-06-02 09:18:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::SandwichAdd(nsSMILValue& aDest,
|
|
|
|
const nsSMILValue& aValueToAdd) const
|
|
|
|
{
|
|
|
|
return AddOrAccumulate(aDest, aValueToAdd, CompositeOperation::Add, 1)
|
|
|
|
? NS_OK
|
|
|
|
: NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::Add(nsSMILValue& aDest, const nsSMILValue& aValueToAdd,
|
|
|
|
uint32_t aCount) const
|
|
|
|
{
|
|
|
|
return AddOrAccumulate(aDest, aValueToAdd, CompositeOperation::Accumulate,
|
|
|
|
aCount)
|
2017-04-26 07:00:12 +03:00
|
|
|
? NS_OK
|
|
|
|
: NS_ERROR_FAILURE;
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
static nsresult
|
|
|
|
ComputeDistanceForServo(const ValueWrapper* aFromWrapper,
|
|
|
|
const ValueWrapper& aToWrapper,
|
|
|
|
double& aDistance)
|
|
|
|
{
|
2017-06-09 00:19:37 +03:00
|
|
|
size_t len = aToWrapper.mServoValues.Length();
|
|
|
|
MOZ_ASSERT(!aFromWrapper || aFromWrapper->mServoValues.Length() == len,
|
|
|
|
"From and to values length should be the same if "
|
|
|
|
"The start value exists");
|
|
|
|
|
|
|
|
double squareDistance = 0;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
const RefPtr<RawServoAnimationValue>* fromValue =
|
|
|
|
aFromWrapper ? &aFromWrapper->mServoValues[0] : nullptr;
|
|
|
|
const RefPtr<RawServoAnimationValue>* toValue = &aToWrapper.mServoValues[0];
|
|
|
|
RefPtr<RawServoAnimationValue> zeroValueStorage;
|
|
|
|
if (!FinalizeServoAnimationValues(fromValue, toValue, zeroValueStorage)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
double distance = Servo_AnimationValues_ComputeDistance(*fromValue, *toValue);
|
2017-08-24 04:21:14 +03:00
|
|
|
if (distance < 0.0) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (len == 1) {
|
|
|
|
aDistance = distance;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
squareDistance += distance * distance;
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
aDistance = sqrt(squareDistance);
|
2017-06-09 00:19:37 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::ComputeDistance(const nsSMILValue& aFrom,
|
|
|
|
const nsSMILValue& aTo,
|
|
|
|
double& aDistance) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aFrom.mType == aTo.mType,
|
|
|
|
"Trying to compare different types");
|
|
|
|
MOZ_ASSERT(aFrom.mType == this, "Unexpected source type");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
const ValueWrapper* fromWrapper = ExtractValueWrapper(aFrom);
|
|
|
|
const ValueWrapper* toWrapper = ExtractValueWrapper(aTo);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(toWrapper, "expecting non-null endpoint");
|
2009-12-10 20:26:28 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!toWrapper->mServoValues.IsEmpty()) {
|
2017-06-09 00:19:37 +03:00
|
|
|
return ComputeDistanceForServo(fromWrapper, *toWrapper, aDistance);
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
const StyleAnimationValue* fromCSSValue = fromWrapper ?
|
|
|
|
&fromWrapper->mGeckoValue : nullptr;
|
|
|
|
const StyleAnimationValue* toCSSValue = &toWrapper->mGeckoValue;
|
|
|
|
if (!FinalizeStyleAnimationValues(fromCSSValue, toCSSValue)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
return StyleAnimationValue::ComputeDistance(toWrapper->mPropID,
|
2017-06-09 00:19:37 +03:00
|
|
|
fromWrapper->mGeckoValue,
|
|
|
|
toWrapper->mGeckoValue,
|
2016-10-05 10:36:16 +03:00
|
|
|
nullptr,
|
2017-04-26 07:00:12 +03:00
|
|
|
aDistance)
|
|
|
|
? NS_OK
|
|
|
|
: NS_ERROR_FAILURE;
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
static nsresult
|
|
|
|
InterpolateForGecko(const ValueWrapper* aStartWrapper,
|
|
|
|
const ValueWrapper& aEndWrapper,
|
|
|
|
double aUnitDistance,
|
|
|
|
nsSMILValue& aResult)
|
|
|
|
{
|
|
|
|
const StyleAnimationValue* startCSSValue = aStartWrapper
|
|
|
|
? &aStartWrapper->mGeckoValue
|
|
|
|
: nullptr;
|
|
|
|
const StyleAnimationValue* endCSSValue = &aEndWrapper.mGeckoValue;
|
|
|
|
if (!FinalizeStyleAnimationValues(startCSSValue, endCSSValue)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
StyleAnimationValue resultValue;
|
|
|
|
if (StyleAnimationValue::Interpolate(aEndWrapper.mPropID,
|
|
|
|
*startCSSValue,
|
|
|
|
*endCSSValue,
|
|
|
|
aUnitDistance, resultValue)) {
|
|
|
|
aResult.mU.mPtr = new ValueWrapper(aEndWrapper.mPropID, resultValue);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2017-06-09 00:19:37 +03:00
|
|
|
|
|
|
|
static nsresult
|
|
|
|
InterpolateForServo(const ValueWrapper* aStartWrapper,
|
|
|
|
const ValueWrapper& aEndWrapper,
|
|
|
|
double aUnitDistance,
|
|
|
|
nsSMILValue& aResult)
|
|
|
|
{
|
2017-08-15 08:40:06 +03:00
|
|
|
// For discretely-animated properties Servo_AnimationValues_Interpolate will
|
|
|
|
// perform the discrete animation (i.e. 50% flip) and return a success result.
|
|
|
|
// However, SMIL has its own special discrete animation behavior that it uses
|
|
|
|
// when keyTimes are specified, but we won't run that unless that this method
|
|
|
|
// returns a failure to indicate that the property cannot be smoothly
|
|
|
|
// interpolated, i.e. that we need to use a discrete calcMode.
|
2017-08-16 10:09:40 +03:00
|
|
|
//
|
|
|
|
// For shorthands, Servo_Property_IsDiscreteAnimatable will always return
|
|
|
|
// false. That's fine since most shorthands (like 'font' and
|
|
|
|
// 'text-decoration') include non-discrete components. If authors want to
|
|
|
|
// treat all components as discrete then they should use calcMode="discrete".
|
|
|
|
if (Servo_Property_IsDiscreteAnimatable(aEndWrapper.mPropID)) {
|
2017-08-15 08:40:06 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
ServoAnimationValues results;
|
|
|
|
size_t len = aEndWrapper.mServoValues.Length();
|
|
|
|
results.SetCapacity(len);
|
|
|
|
MOZ_ASSERT(!aStartWrapper || aStartWrapper->mServoValues.Length() == len,
|
|
|
|
"Start and end values length should be the same if "
|
2017-08-15 08:40:06 +03:00
|
|
|
"the start value exists");
|
2017-06-09 00:19:37 +03:00
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
const RefPtr<RawServoAnimationValue>*
|
|
|
|
startValue = aStartWrapper
|
|
|
|
? &aStartWrapper->mServoValues[i]
|
|
|
|
: nullptr;
|
|
|
|
const RefPtr<RawServoAnimationValue>* endValue = &aEndWrapper.mServoValues[i];
|
|
|
|
RefPtr<RawServoAnimationValue> zeroValueStorage;
|
|
|
|
if (!FinalizeServoAnimationValues(startValue, endValue, zeroValueStorage)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
RefPtr<RawServoAnimationValue> result =
|
|
|
|
Servo_AnimationValues_Interpolate(*startValue,
|
|
|
|
*endValue,
|
|
|
|
aUnitDistance).Consume();
|
|
|
|
if (!result) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
results.AppendElement(result);
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
2017-06-09 00:19:37 +03:00
|
|
|
aResult.mU.mPtr = new ValueWrapper(aEndWrapper.mPropID, Move(results));
|
2017-06-09 00:19:37 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::Interpolate(const nsSMILValue& aStartVal,
|
|
|
|
const nsSMILValue& aEndVal,
|
|
|
|
double aUnitDistance,
|
|
|
|
nsSMILValue& aResult) const
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aStartVal.mType == aEndVal.mType,
|
|
|
|
"Trying to interpolate different types");
|
|
|
|
MOZ_ASSERT(aStartVal.mType == this,
|
|
|
|
"Unexpected types for interpolation");
|
|
|
|
MOZ_ASSERT(aResult.mType == this, "Unexpected result type");
|
|
|
|
MOZ_ASSERT(aUnitDistance >= 0.0 && aUnitDistance <= 1.0,
|
|
|
|
"unit distance value out of bounds");
|
|
|
|
MOZ_ASSERT(!aResult.mU.mPtr, "expecting barely-initialized outparam");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
const ValueWrapper* startWrapper = ExtractValueWrapper(aStartVal);
|
|
|
|
const ValueWrapper* endWrapper = ExtractValueWrapper(aEndVal);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(endWrapper, "expecting non-null endpoint");
|
2009-12-10 20:26:28 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!endWrapper->mServoValues.IsEmpty()) {
|
2017-06-09 00:19:37 +03:00
|
|
|
return InterpolateForServo(startWrapper,
|
|
|
|
*endWrapper,
|
|
|
|
aUnitDistance,
|
|
|
|
aResult);
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:37 +03:00
|
|
|
return InterpolateForGecko(startWrapper,
|
|
|
|
*endWrapper,
|
|
|
|
aUnitDistance,
|
|
|
|
aResult);
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2009-12-10 20:26:28 +03:00
|
|
|
// Helper function to extract presContext
|
|
|
|
static nsPresContext*
|
2011-03-28 20:49:11 +04:00
|
|
|
GetPresContextForElement(Element* aElem)
|
2009-12-10 20:26:28 +03:00
|
|
|
{
|
2016-03-31 14:46:32 +03:00
|
|
|
nsIDocument* doc = aElem->GetUncomposedDoc();
|
2009-12-24 03:19:29 +03:00
|
|
|
if (!doc) {
|
|
|
|
// This can happen if we process certain types of restyles mid-sample
|
|
|
|
// and remove anonymous animated content from the document as a result.
|
|
|
|
// See bug 534975.
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2009-12-24 03:19:29 +03:00
|
|
|
}
|
2018-02-21 01:00:10 +03:00
|
|
|
return doc->GetPresContext();
|
2009-12-10 20:26:28 +03:00
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-04-26 07:00:11 +03:00
|
|
|
static const nsDependentSubstring
|
|
|
|
GetNonNegativePropValue(const nsAString& aString, nsCSSPropertyID aPropID,
|
|
|
|
bool& aIsNegative)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
|
|
|
// If value is negative, we'll strip off the "-" so the CSS parser won't
|
2010-02-02 05:46:13 +03:00
|
|
|
// barf, and then manually make the parsed value negative.
|
|
|
|
// (This is a partial solution to let us accept some otherwise out-of-bounds
|
|
|
|
// CSS values. Bug 501188 will provide a more complete fix.)
|
2017-04-26 07:00:11 +03:00
|
|
|
aIsNegative = false;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t subStringBegin = 0;
|
2011-12-16 04:27:05 +04:00
|
|
|
|
|
|
|
// NOTE: We need to opt-out 'stroke-dasharray' from the negative-number
|
|
|
|
// check. Its values might look negative (e.g. by starting with "-1"), but
|
|
|
|
// they're more complicated than our simple negation logic here can handle.
|
|
|
|
if (aPropID != eCSSProperty_stroke_dasharray) {
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t absValuePos = nsSMILParserUtils::CheckForNegativeNumber(aString);
|
2011-12-16 04:27:05 +04:00
|
|
|
if (absValuePos > 0) {
|
2017-04-26 07:00:11 +03:00
|
|
|
aIsNegative = true;
|
2012-08-22 19:56:38 +04:00
|
|
|
subStringBegin = (uint32_t)absValuePos; // Start parsing after '-' sign
|
2011-12-16 04:27:05 +04:00
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
2017-04-26 07:00:11 +03:00
|
|
|
|
|
|
|
return Substring(aString, subStringBegin);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper function to parse a string into a StyleAnimationValue
|
|
|
|
static bool
|
|
|
|
ValueFromStringHelper(nsCSSPropertyID aPropID,
|
|
|
|
Element* aTargetElement,
|
|
|
|
nsPresContext* aPresContext,
|
2017-07-21 04:22:00 +03:00
|
|
|
mozilla::GeckoStyleContext* aStyleContext,
|
2017-04-26 07:00:11 +03:00
|
|
|
const nsAString& aString,
|
|
|
|
StyleAnimationValue& aStyleAnimValue,
|
|
|
|
bool* aIsContextSensitive)
|
|
|
|
{
|
|
|
|
bool isNegative = false;
|
|
|
|
const nsDependentSubstring subString =
|
|
|
|
GetNonNegativePropValue(aString, aPropID, isNegative);
|
|
|
|
|
2017-04-26 07:00:12 +03:00
|
|
|
if (!StyleAnimationValue::ComputeValue(aPropID, aTargetElement, aStyleContext,
|
2016-03-22 10:31:09 +03:00
|
|
|
subString, true, aStyleAnimValue,
|
2016-02-17 01:07:00 +03:00
|
|
|
aIsContextSensitive)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-02 05:46:13 +03:00
|
|
|
}
|
|
|
|
if (isNegative) {
|
|
|
|
InvertSign(aStyleAnimValue);
|
|
|
|
}
|
2014-06-24 10:29:54 +04:00
|
|
|
|
2010-02-02 05:46:13 +03:00
|
|
|
if (aPropID == eCSSProperty_font_size) {
|
|
|
|
// Divide out text-zoom, since SVG is supposed to ignore it
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aStyleAnimValue.GetUnit() == StyleAnimationValue::eUnit_Coord,
|
|
|
|
"'font-size' value with unexpected style unit");
|
2010-02-02 05:46:13 +03:00
|
|
|
aStyleAnimValue.SetCoordValue(aStyleAnimValue.GetCoordValue() /
|
2017-02-25 15:22:52 +03:00
|
|
|
aPresContext->EffectiveTextZoom());
|
2010-02-02 05:46:13 +03:00
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-02-02 05:46:13 +03:00
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2010-02-02 05:46:13 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
static ServoAnimationValues
|
2017-04-26 07:00:12 +03:00
|
|
|
ValueFromStringHelper(nsCSSPropertyID aPropID,
|
|
|
|
Element* aTargetElement,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsStyleContext* aStyleContext,
|
|
|
|
const nsAString& aString)
|
|
|
|
{
|
2017-06-09 00:19:37 +03:00
|
|
|
ServoAnimationValues result;
|
2017-04-26 07:00:12 +03:00
|
|
|
|
|
|
|
nsIDocument* doc = aTargetElement->GetUncomposedDoc();
|
|
|
|
if (!doc) {
|
2017-06-09 00:19:37 +03:00
|
|
|
return result;
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
2017-06-02 03:38:00 +03:00
|
|
|
|
|
|
|
// Parse property
|
2017-12-01 12:35:47 +03:00
|
|
|
ServoCSSParser::ParsingEnvironment env =
|
|
|
|
ServoCSSParser::GetParsingEnvironment(doc);
|
2017-04-26 07:00:12 +03:00
|
|
|
RefPtr<RawServoDeclarationBlock> servoDeclarationBlock =
|
2017-12-01 12:35:47 +03:00
|
|
|
ServoCSSParser::ParseProperty(aPropID, aString, env,
|
|
|
|
ParsingMode::AllowUnitlessLength |
|
|
|
|
ParsingMode::AllowAllNumericValues);
|
2017-04-26 07:00:12 +03:00
|
|
|
if (!servoDeclarationBlock) {
|
2017-06-09 00:19:37 +03:00
|
|
|
return result;
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compute value
|
2017-06-09 00:19:37 +03:00
|
|
|
aPresContext->StyleSet()->AsServo()->GetAnimationValues(servoDeclarationBlock,
|
|
|
|
aTargetElement,
|
2017-07-18 15:29:12 +03:00
|
|
|
aStyleContext->AsServo(),
|
2017-06-09 00:19:37 +03:00
|
|
|
result);
|
2017-04-26 07:00:12 +03:00
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
return result;
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
|
|
|
|
2010-02-02 05:46:13 +03:00
|
|
|
// static
|
|
|
|
void
|
2016-08-10 02:28:19 +03:00
|
|
|
nsSMILCSSValueType::ValueFromString(nsCSSPropertyID aPropID,
|
2011-03-28 20:49:11 +04:00
|
|
|
Element* aTargetElement,
|
2010-02-02 05:46:13 +03:00
|
|
|
const nsAString& aString,
|
2011-08-23 03:34:03 +04:00
|
|
|
nsSMILValue& aValue,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool* aIsContextSensitive)
|
2010-02-02 05:46:13 +03:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValue.IsNull(), "Outparam should be null-typed");
|
2010-02-02 05:46:13 +03:00
|
|
|
nsPresContext* presContext = GetPresContextForElement(aTargetElement);
|
|
|
|
if (!presContext) {
|
|
|
|
NS_WARNING("Not parsing animation value; unable to get PresContext");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-31 14:46:32 +03:00
|
|
|
nsIDocument* doc = aTargetElement->GetUncomposedDoc();
|
2013-11-09 03:44:39 +04:00
|
|
|
if (doc && !nsStyleUtil::CSPAllowsInlineStyle(nullptr,
|
|
|
|
doc->NodePrincipal(),
|
2017-11-05 23:19:34 +03:00
|
|
|
nullptr,
|
2012-08-30 21:58:24 +04:00
|
|
|
doc->GetDocumentURI(),
|
|
|
|
0, aString, nullptr)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-26 07:00:12 +03:00
|
|
|
RefPtr<nsStyleContext> styleContext =
|
2018-01-23 17:49:00 +03:00
|
|
|
nsComputedDOMStyle::GetStyleContext(aTargetElement, nullptr);
|
2017-04-26 07:00:12 +03:00
|
|
|
if (!styleContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 04:22:00 +03:00
|
|
|
if (styleContext->IsServo()) {
|
2017-06-09 00:19:37 +03:00
|
|
|
ServoAnimationValues parsedValues =
|
2017-04-26 07:00:12 +03:00
|
|
|
ValueFromStringHelper(aPropID, aTargetElement, presContext,
|
|
|
|
styleContext, aString);
|
|
|
|
if (aIsContextSensitive) {
|
|
|
|
// FIXME: Bug 1358955 - detect context-sensitive values and set this value
|
|
|
|
// appropriately.
|
|
|
|
*aIsContextSensitive = false;
|
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:37 +03:00
|
|
|
if (!parsedValues.IsEmpty()) {
|
2017-04-26 07:00:12 +03:00
|
|
|
sSingleton.Init(aValue);
|
2017-06-09 00:19:37 +03:00
|
|
|
aValue.mU.mPtr = new ValueWrapper(aPropID, Move(parsedValues));
|
2017-04-26 07:00:12 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue parsedValue;
|
2017-07-21 04:22:00 +03:00
|
|
|
if (ValueFromStringHelper(aPropID, aTargetElement, presContext,
|
|
|
|
styleContext->AsGecko(), aString, parsedValue,
|
|
|
|
aIsContextSensitive)) {
|
2010-02-02 05:46:13 +03:00
|
|
|
sSingleton.Init(aValue);
|
2012-11-20 23:55:14 +04:00
|
|
|
aValue.mU.mPtr = new ValueWrapper(aPropID, parsedValue);
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2017-03-30 10:53:15 +03:00
|
|
|
// static
|
|
|
|
nsSMILValue
|
|
|
|
nsSMILCSSValueType::ValueFromAnimationValue(nsCSSPropertyID aPropID,
|
|
|
|
Element* aTargetElement,
|
2017-04-26 07:00:12 +03:00
|
|
|
const AnimationValue& aValue)
|
2017-03-30 10:53:15 +03:00
|
|
|
{
|
|
|
|
nsSMILValue result;
|
|
|
|
|
|
|
|
nsIDocument* doc = aTargetElement->GetUncomposedDoc();
|
|
|
|
// We'd like to avoid serializing |aValue| if possible, and since the
|
|
|
|
// string passed to CSPAllowsInlineStyle is only used for reporting violations
|
|
|
|
// and an intermediate CSS value is not likely to be particularly useful
|
|
|
|
// in that case, we just use a generic placeholder string instead.
|
|
|
|
static const nsLiteralString kPlaceholderText =
|
|
|
|
NS_LITERAL_STRING("[SVG animation of CSS]");
|
|
|
|
if (doc && !nsStyleUtil::CSPAllowsInlineStyle(nullptr,
|
|
|
|
doc->NodePrincipal(),
|
2017-11-05 23:19:34 +03:00
|
|
|
nullptr,
|
2017-03-30 10:53:15 +03:00
|
|
|
doc->GetDocumentURI(),
|
|
|
|
0, kPlaceholderText, nullptr)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
sSingleton.Init(result);
|
|
|
|
result.mU.mPtr = new ValueWrapper(aPropID, aValue);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-02-02 05:46:13 +03:00
|
|
|
// static
|
2017-04-26 07:00:12 +03:00
|
|
|
void
|
2009-10-03 01:37:25 +04:00
|
|
|
nsSMILCSSValueType::ValueToString(const nsSMILValue& aValue,
|
2010-02-02 05:46:13 +03:00
|
|
|
nsAString& aString)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValue.mType == &nsSMILCSSValueType::sSingleton,
|
|
|
|
"Unexpected SMIL value type");
|
2009-10-03 01:37:25 +04:00
|
|
|
const ValueWrapper* wrapper = ExtractValueWrapper(aValue);
|
2017-04-26 07:00:12 +03:00
|
|
|
if (!wrapper) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:38 +03:00
|
|
|
if (wrapper->mServoValues.IsEmpty()) {
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-06-09 00:19:38 +03:00
|
|
|
DebugOnly<bool> uncomputeResult =
|
|
|
|
StyleAnimationValue::UncomputeValue(wrapper->mPropID,
|
|
|
|
wrapper->mGeckoValue,
|
|
|
|
aString);
|
2017-06-09 00:19:37 +03:00
|
|
|
return;
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2017-06-09 00:19:37 +03:00
|
|
|
}
|
|
|
|
|
2017-06-09 00:19:38 +03:00
|
|
|
if (nsCSSProps::IsShorthand(wrapper->mPropID)) {
|
|
|
|
// In case of shorthand on servo, we iterate over all mServoValues array
|
|
|
|
// since we have multiple AnimationValues in the array for each longhand
|
|
|
|
// component.
|
|
|
|
Servo_Shorthand_AnimationValues_Serialize(wrapper->mPropID,
|
|
|
|
&wrapper->mServoValues,
|
|
|
|
&aString);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Servo_AnimationValue_Serialize(wrapper->mServoValues[0],
|
|
|
|
wrapper->mPropID,
|
|
|
|
&aString);
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
2016-04-20 03:05:29 +03:00
|
|
|
|
|
|
|
// static
|
2016-08-10 02:28:19 +03:00
|
|
|
nsCSSPropertyID
|
2016-04-20 03:05:29 +03:00
|
|
|
nsSMILCSSValueType::PropertyFromValue(const nsSMILValue& aValue)
|
|
|
|
{
|
|
|
|
if (aValue.mType != &nsSMILCSSValueType::sSingleton) {
|
|
|
|
return eCSSProperty_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ValueWrapper* wrapper = ExtractValueWrapper(aValue);
|
|
|
|
if (!wrapper) {
|
|
|
|
return eCSSProperty_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wrapper->mPropID;
|
|
|
|
}
|
2017-10-04 09:04:23 +03:00
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsSMILCSSValueType::FinalizeValue(nsSMILValue& aValue,
|
|
|
|
const nsSMILValue& aValueToMatch)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aValue.mType == aValueToMatch.mType, "Incompatible SMIL types");
|
|
|
|
MOZ_ASSERT(aValue.mType == &nsSMILCSSValueType::sSingleton,
|
|
|
|
"Unexpected SMIL value type");
|
|
|
|
|
|
|
|
ValueWrapper* valueWrapper = ExtractValueWrapper(aValue);
|
|
|
|
// If |aValue| already has a value, there's nothing to do here.
|
|
|
|
if (valueWrapper) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ValueWrapper* valueToMatchWrapper = ExtractValueWrapper(aValueToMatch);
|
|
|
|
if (!valueToMatchWrapper) {
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Value to match is empty");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isServo = !valueToMatchWrapper->mServoValues.IsEmpty();
|
|
|
|
|
|
|
|
if (isServo) {
|
|
|
|
ServoAnimationValues zeroValues;
|
|
|
|
zeroValues.SetCapacity(valueToMatchWrapper->mServoValues.Length());
|
|
|
|
|
|
|
|
for (auto& valueToMatch : valueToMatchWrapper->mServoValues) {
|
|
|
|
RefPtr<RawServoAnimationValue> zeroValue =
|
|
|
|
Servo_AnimationValues_GetZeroValue(valueToMatch).Consume();
|
|
|
|
if (!zeroValue) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
zeroValues.AppendElement(Move(zeroValue));
|
|
|
|
}
|
|
|
|
aValue.mU.mPtr = new ValueWrapper(valueToMatchWrapper->mPropID,
|
|
|
|
Move(zeroValues));
|
|
|
|
} else {
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2017-10-04 09:04:23 +03:00
|
|
|
const StyleAnimationValue* zeroValue =
|
|
|
|
GetZeroValueForUnit(valueToMatchWrapper->mGeckoValue.GetUnit());
|
|
|
|
if (!zeroValue) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
aValue.mU.mPtr = new ValueWrapper(valueToMatchWrapper->mPropID,
|
|
|
|
*zeroValue);
|
2018-02-01 07:04:04 +03:00
|
|
|
#else
|
|
|
|
MOZ_CRASH("old style system disabled");
|
|
|
|
#endif
|
2017-10-04 09:04:23 +03:00
|
|
|
}
|
|
|
|
}
|