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"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsSMILParserUtils.h"
|
|
|
|
#include "nsSMILValue.h"
|
|
|
|
#include "nsCSSValue.h"
|
|
|
|
#include "nsColor.h"
|
|
|
|
#include "nsPresContext.h"
|
2014-06-24 10:29:54 +04:00
|
|
|
#include "mozilla/StyleAnimationValue.h"
|
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
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
/*static*/ nsSMILCSSValueType nsSMILCSSValueType::sSingleton;
|
|
|
|
|
|
|
|
struct ValueWrapper {
|
2016-08-10 02:28:19 +03:00
|
|
|
ValueWrapper(nsCSSPropertyID aPropID, const StyleAnimationValue& aValue) :
|
2012-11-20 23:55:14 +04:00
|
|
|
mPropID(aPropID), mCSSValue(aValue) {}
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2016-08-10 02:28:19 +03:00
|
|
|
nsCSSPropertyID mPropID;
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue mCSSValue;
|
2009-10-03 01:37:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Helper Methods
|
|
|
|
// --------------
|
2014-06-24 10:29:54 +04:00
|
|
|
static const StyleAnimationValue*
|
|
|
|
GetZeroValueForUnit(StyleAnimationValue::Unit aUnit)
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2014-06-24 10:29:54 +04: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);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 22:13:01 +03:00
|
|
|
// This method requires at least one of its arguments to be non-null.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
// If neither argument is null, this method generally does nothing, though it
|
|
|
|
// may apply a workaround for the special case where a 0 length-value is mixed
|
|
|
|
// with a eUnit_Float value. (See comment below.)
|
|
|
|
//
|
2011-10-17 18:59:28 +04:00
|
|
|
// Returns true on success, or false.
|
2016-01-06 04:08:45 +03:00
|
|
|
static bool
|
2014-06-24 10:29:54 +04:00
|
|
|
FinalizeStyleAnimationValues(const StyleAnimationValue*& aValue1,
|
|
|
|
const StyleAnimationValue*& aValue2)
|
2010-11-06 22:13:01 +03:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValue1 || aValue2,
|
|
|
|
"expecting at least one non-null value");
|
2010-11-06 22:13:01 +03:00
|
|
|
|
|
|
|
// Are we missing either val? (If so, it's an implied 0 in other val's units)
|
|
|
|
if (!aValue1) {
|
|
|
|
aValue1 = GetZeroValueForUnit(aValue2->GetUnit());
|
|
|
|
return !!aValue1; // Fail if we have no zero value for this unit.
|
|
|
|
}
|
|
|
|
if (!aValue2) {
|
|
|
|
aValue2 = GetZeroValueForUnit(aValue1->GetUnit());
|
|
|
|
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.
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue& zeroCoord =
|
|
|
|
*GetZeroValueForUnit(StyleAnimationValue::eUnit_Coord);
|
2013-08-14 16:45:49 +04:00
|
|
|
if (*aValue1 == zeroCoord &&
|
2014-06-24 10:29:54 +04:00
|
|
|
aValue2->GetUnit() == StyleAnimationValue::eUnit_Float) {
|
|
|
|
aValue1 = GetZeroValueForUnit(StyleAnimationValue::eUnit_Float);
|
2013-08-14 16:45:49 +04:00
|
|
|
} else if (*aValue2 == zeroCoord &&
|
2014-06-24 10:29:54 +04:00
|
|
|
aValue1->GetUnit() == StyleAnimationValue::eUnit_Float) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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");
|
2010-02-21 00:13:11 +03:00
|
|
|
return (leftWrapper->mPropID == rightWrapper->mPropID &&
|
|
|
|
leftWrapper->mCSSValue == rightWrapper->mCSSValue);
|
|
|
|
}
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2009-10-03 01:37:25 +04:00
|
|
|
nsresult
|
|
|
|
nsSMILCSSValueType::Add(nsSMILValue& aDest, const nsSMILValue& aValueToAdd,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aCount) const
|
2009-10-03 01:37:25 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aValueToAdd.mType == aDest.mType,
|
|
|
|
"Trying to add invalid types");
|
|
|
|
MOZ_ASSERT(aValueToAdd.mType == this, "Unexpected source type");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
|
|
|
ValueWrapper* destWrapper = ExtractValueWrapper(aDest);
|
|
|
|
const ValueWrapper* valueToAddWrapper = ExtractValueWrapper(aValueToAdd);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(destWrapper || valueToAddWrapper,
|
|
|
|
"need at least one fully-initialized value");
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2016-08-10 02:28:19 +03:00
|
|
|
nsCSSPropertyID property = (valueToAddWrapper ? valueToAddWrapper->mPropID :
|
2009-12-10 20:26:28 +03:00
|
|
|
destWrapper->mPropID);
|
|
|
|
// 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) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* valueToAdd = valueToAddWrapper ?
|
2012-07-30 18:20:58 +04:00
|
|
|
&valueToAddWrapper->mCSSValue : nullptr;
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* destValue = destWrapper ?
|
2012-07-30 18:20:58 +04:00
|
|
|
&destWrapper->mCSSValue : nullptr;
|
2010-11-06 22:13:01 +03:00
|
|
|
if (!FinalizeStyleAnimationValues(valueToAdd, destValue)) {
|
2009-12-10 20:26:28 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2010-11-06 22:13:01 +03:00
|
|
|
// Did FinalizeStyleAnimationValues change destValue?
|
|
|
|
// If so, update outparam to use the new value.
|
|
|
|
if (destWrapper && &destWrapper->mCSSValue != destValue) {
|
|
|
|
destWrapper->mCSSValue = *destValue;
|
|
|
|
}
|
2009-12-10 20:26:28 +03:00
|
|
|
|
|
|
|
// Handle barely-initialized "zero" destination.
|
|
|
|
if (!destWrapper) {
|
|
|
|
aDest.mU.mPtr = destWrapper =
|
2012-11-20 23:55:14 +04:00
|
|
|
new ValueWrapper(property, *destValue);
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
return StyleAnimationValue::Add(property,
|
|
|
|
destWrapper->mCSSValue, *valueToAdd, aCount) ?
|
2009-10-03 01:37:25 +04:00
|
|
|
NS_OK : NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* fromCSSValue = fromWrapper ?
|
2012-07-30 18:20:58 +04:00
|
|
|
&fromWrapper->mCSSValue : nullptr;
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* toCSSValue = &toWrapper->mCSSValue;
|
2010-11-06 22:13:01 +03:00
|
|
|
if (!FinalizeStyleAnimationValues(fromCSSValue, toCSSValue)) {
|
2009-12-10 20:26:28 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
return StyleAnimationValue::ComputeDistance(toWrapper->mPropID,
|
|
|
|
*fromCSSValue, *toCSSValue,
|
|
|
|
aDistance) ?
|
2009-10-09 05:30:55 +04:00
|
|
|
NS_OK : NS_ERROR_FAILURE;
|
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
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* startCSSValue = startWrapper ?
|
2012-07-30 18:20:58 +04:00
|
|
|
&startWrapper->mCSSValue : nullptr;
|
2014-06-24 10:29:54 +04:00
|
|
|
const StyleAnimationValue* endCSSValue = &endWrapper->mCSSValue;
|
2010-11-06 22:13:01 +03:00
|
|
|
if (!FinalizeStyleAnimationValues(startCSSValue, endCSSValue)) {
|
2009-12-10 20:26:28 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
2010-01-28 12:51:03 +03:00
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue resultValue;
|
|
|
|
if (StyleAnimationValue::Interpolate(endWrapper->mPropID,
|
|
|
|
*startCSSValue, *endCSSValue,
|
|
|
|
aUnitDistance, resultValue)) {
|
2012-11-20 23:55:14 +04:00
|
|
|
aResult.mU.mPtr = new ValueWrapper(endWrapper->mPropID, resultValue);
|
2010-11-06 22:13:01 +03:00
|
|
|
return NS_OK;
|
2009-10-03 01:37:25 +04:00
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2010-06-25 17:59:57 +04:00
|
|
|
nsIPresShell* shell = doc->GetShell();
|
2012-07-30 18:20:58 +04:00
|
|
|
return shell ? shell->GetPresContext() : nullptr;
|
2009-12-10 20:26:28 +03:00
|
|
|
}
|
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
// Helper function to parse a string into a StyleAnimationValue
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool
|
2016-08-10 02:28:19 +03:00
|
|
|
ValueFromStringHelper(nsCSSPropertyID aPropID,
|
2011-03-28 20:49:11 +04:00
|
|
|
Element* aTargetElement,
|
2010-02-02 05:46:13 +03:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
const nsAString& aString,
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue& aStyleAnimValue,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool* aIsContextSensitive)
|
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.)
|
2011-09-29 10:19:26 +04:00
|
|
|
bool isNegative = 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) {
|
|
|
|
isNegative = 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
|
|
|
}
|
2016-03-22 10:31:09 +03:00
|
|
|
RefPtr<nsStyleContext> styleContext =
|
|
|
|
nsComputedDOMStyle::GetStyleContextForElement(aTargetElement, nullptr,
|
|
|
|
aPresContext->PresShell());
|
|
|
|
if (!styleContext) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-03 01:37:25 +04:00
|
|
|
nsDependentSubstring subString(aString, subStringBegin);
|
2016-03-22 10:31:09 +03:00
|
|
|
if (!StyleAnimationValue::ComputeValue(aPropID, aTargetElement, styleContext,
|
|
|
|
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() /
|
|
|
|
aPresContext->TextZoom());
|
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
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(),
|
2012-08-30 21:58:24 +04:00
|
|
|
doc->GetDocumentURI(),
|
|
|
|
0, aString, nullptr)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue parsedValue;
|
2010-02-02 05:46:13 +03:00
|
|
|
if (ValueFromStringHelper(aPropID, aTargetElement, presContext,
|
2011-08-23 03:34:03 +04:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-02 05:46:13 +03:00
|
|
|
// static
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
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);
|
2009-12-10 20:26:28 +03:00
|
|
|
return !wrapper ||
|
2014-06-24 10:29:54 +04:00
|
|
|
StyleAnimationValue::UncomputeValue(wrapper->mPropID,
|
|
|
|
wrapper->mCSSValue, 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;
|
|
|
|
}
|