Changeset 87518 in webkit


Ignore:
Timestamp:
May 27, 2011 9:19:53 AM (13 years ago)
Author:
rwlbuis@webkit.org
Message:

2011-05-27 Rob Buis <rbuis@rim.com>

Reviewed by Nikolas Zimmermann.

https://bugs.webkit.org/show_bug.cgi?id=19995
hixie.ch : anchor Link fails with fragment identifiers inside SVG fragments.

Remove 003-broken.xml and replace it with a 003.xml that is text-only.

  • platform/mac/svg/hixie/links/003-broken-expected.png: Removed.
  • platform/mac/svg/hixie/links/003-broken-expected.txt: Removed.
  • svg/hixie/links/003-broken.xml: Removed.
  • svg/hixie/links/003-expected.txt: Added.
  • svg/hixie/links/003.xml: Added.

2011-05-27 Rob Buis <rbuis@rim.com>

Reviewed by Nikolas Zimmermann.

https://bugs.webkit.org/show_bug.cgi?id=19995
hixie.ch : anchor Link fails with fragment identifiers inside SVG fragments.

Only allow links to animation elements within the document.

Test: svg/hixie/links/003.xml

  • svg/SVGAElement.cpp: (WebCore::SVGAElement::defaultEventHandler):
Location:
trunk
Files:
2 added
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87513 r87518  
     12011-05-27  Rob Buis  <rbuis@rim.com>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=19995
     6        hixie.ch : anchor Link fails with fragment identifiers inside SVG fragments.
     7
     8        Remove 003-broken.xml and replace it with a 003.xml that is text-only.
     9
     10        * platform/mac/svg/hixie/links/003-broken-expected.png: Removed.
     11        * platform/mac/svg/hixie/links/003-broken-expected.txt: Removed.
     12        * svg/hixie/links/003-broken.xml: Removed.
     13        * svg/hixie/links/003-expected.txt: Added.
     14        * svg/hixie/links/003.xml: Added.
     15
    1162011-05-27  Yael Aharon  <yael.aharon@nokia.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r87512 r87518  
     12011-05-27  Rob Buis  <rbuis@rim.com>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=19995
     6        hixie.ch : anchor Link fails with fragment identifiers inside SVG fragments.
     7
     8        Only allow links to animation elements within the document.
     9
     10        Test: svg/hixie/links/003.xml
     11
     12        * svg/SVGAElement.cpp:
     13        (WebCore::SVGAElement::defaultEventHandler):
     14
    1152011-05-27  Andreas Kling  <kling@webkit.org>
    216
  • trunk/Source/WebCore/svg/SVGAElement.cpp

    r87010 r87518  
    213213                    static_cast<SVGSMILElement*>(targetElement)->beginByLinkActivation();
    214214                    event->setDefaultHandled();
    215                     return;
    216215                }
     216                return;
    217217            }
    218218#endif
Note: See TracChangeset for help on using the changeset viewer.