Changeset 31718 in webkit


Ignore:
Timestamp:
Apr 8, 2008 12:20:21 AM (16 years ago)
Author:
rwlbuis@webkit.org
Message:

Reviewed by Ollie.

http://bugs.webkit.org/show_bug.cgi?id=18354
feFlood in attribute should be removed according to SVG 1.1 Errata

Remove the in attribute from SVGFEFlood DOM.

Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r31707 r31718  
     12008-04-07  Rob Buis  <buis@kde.org>
     2
     3        Reviewed by Ollie.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=18354
     6        feFlood in attribute should be removed according to SVG 1.1 Errata
     7
     8        Remove the in attribute from SVGFEFlood DOM.
     9
     10        * svg/SVGFEFloodElement.cpp:
     11        (WebCore::SVGFEFloodElement::parseMappedAttribute):
     12        * svg/SVGFEFloodElement.h:
     13        * svg/SVGFEFloodElement.idl:
     14
    1152008-04-07  Brady Eidson  <beidson@apple.com>
    216
  • trunk/WebCore/svg/SVGFEFloodElement.cpp

    r29951 r31718  
    11/*
    22    Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
    3                   2004, 2005, 2007 Rob Buis <buis@kde.org>
     3                  2004, 2005, 2007, 2008 Rob Buis <buis@kde.org>
    44
    55    This file is part of the KDE project
     
    4545}
    4646
    47 ANIMATED_PROPERTY_DEFINITIONS(SVGFEFloodElement, String, String, string, In1, in1, SVGNames::inAttr, m_in1)
    48 
    4947void SVGFEFloodElement::parseMappedAttribute(MappedAttribute* attr)
    5048{
    51     const String& value = attr->value();
    52     if (attr->name() == SVGNames::inAttr)
    53         setIn1BaseValue(value);
    54     else
    55         SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
     49    SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
    5650}
    5751
  • trunk/WebCore/svg/SVGFEFloodElement.h

    r31600 r31718  
    11/*
    22    Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
    3                   2004, 2005 Rob Buis <buis@kde.org>
     3                  2004, 2005, 2008 Rob Buis <buis@kde.org>
    44
    55    This file is part of the KDE project
     
    4343
    4444    private:
    45         ANIMATED_PROPERTY_DECLARATIONS(SVGFEFloodElement, String, String, In1, in1)
    46 
    4745        mutable SVGFEFlood *m_filterEffect;
    4846    };
  • trunk/WebCore/svg/SVGFEFloodElement.idl

    r29672 r31718  
    2828    interface [Conditional=SVG&SVG_FILTERS] SVGFEFloodElement : SVGElement,
    2929                                                    SVGFilterPrimitiveStandardAttributes {
    30         readonly attribute SVGAnimatedString in1;
    3130    };
    3231
Note: See TracChangeset for help on using the changeset viewer.