| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Alexander Kellett <lypanov@kde.org> | 4 * Copyright (C) 2005 Alexander Kellett <lypanov@kde.org> |
| 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 6 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 inline SVGMaskElement::SVGMaskElement(Document& document) | 32 inline SVGMaskElement::SVGMaskElement(Document& document) |
| 33 : SVGElement(SVGNames::maskTag, document) | 33 : SVGElement(SVGNames::maskTag, document) |
| 34 , SVGTests(this) | 34 , SVGTests(this) |
| 35 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(Len
gthModeWidth), AllowNegativeLengths)) | 35 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(Len
gthModeWidth), AllowNegativeLengths)) |
| 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(Len
gthModeHeight), AllowNegativeLengths)) | 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(Len
gthModeHeight), AllowNegativeLengths)) |
| 37 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::cr
eate(LengthModeWidth), ForbidNegativeLengths)) | 37 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::cr
eate(LengthModeWidth), ForbidNegativeLengths)) |
| 38 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::
create(LengthModeHeight), ForbidNegativeLengths)) | 38 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::
create(LengthModeHeight), ForbidNegativeLengths)) |
| 39 , m_maskUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this
, SVGNames::maskUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) | 39 , m_maskUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this
, SVGNames::maskUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) |
| 40 , m_maskContentUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::crea
te(this, SVGNames::maskContentUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEON
USE)) | 40 , m_maskContentUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::crea
te(this, SVGNames::maskContentUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEON
USE)) |
| 41 { | 41 { |
| 42 ScriptWrappable::init(this); | |
| 43 | |
| 44 // Spec: If the x/y attribute is not specified, the effect is as if a value
of "-10%" were specified. | 42 // Spec: If the x/y attribute is not specified, the effect is as if a value
of "-10%" were specified. |
| 45 m_x->setDefaultValueAsString("-10%"); | 43 m_x->setDefaultValueAsString("-10%"); |
| 46 m_y->setDefaultValueAsString("-10%"); | 44 m_y->setDefaultValueAsString("-10%"); |
| 47 | 45 |
| 48 // Spec: If the width/height attribute is not specified, the effect is as if
a value of "120%" were specified. | 46 // Spec: If the width/height attribute is not specified, the effect is as if
a value of "120%" were specified. |
| 49 m_width->setDefaultValueAsString("120%"); | 47 m_width->setDefaultValueAsString("120%"); |
| 50 m_height->setDefaultValueAsString("120%"); | 48 m_height->setDefaultValueAsString("120%"); |
| 51 | 49 |
| 52 addToPropertyMap(m_x); | 50 addToPropertyMap(m_x); |
| 53 addToPropertyMap(m_y); | 51 addToPropertyMap(m_y); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } | 134 } |
| 137 | 135 |
| 138 bool SVGMaskElement::selfHasRelativeLengths() const | 136 bool SVGMaskElement::selfHasRelativeLengths() const |
| 139 { | 137 { |
| 140 return m_x->currentValue()->isRelative() | 138 return m_x->currentValue()->isRelative() |
| 141 || m_y->currentValue()->isRelative() | 139 || m_y->currentValue()->isRelative() |
| 142 || m_width->currentValue()->isRelative() | 140 || m_width->currentValue()->isRelative() |
| 143 || m_height->currentValue()->isRelative(); | 141 || m_height->currentValue()->isRelative(); |
| 144 } | 142 } |
| 145 | 143 |
| 146 } | 144 } // namespace blink |
| OLD | NEW |