Changeset 47890 in webkit


Ignore:
Timestamp:
Aug 31, 2009, 4:06:26 AM (16 years ago)
Author:
eric@webkit.org
Message:

2009-08-31 Cameron McCormack <cam@mcc.id.au>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=28827
SVGSVGElement.unsuspendRedraw() shouldn't throw

  • svg/SVGSVGElement.cpp: (WebCore::SVGSVGElement::unsuspendRedraw):
  • svg/SVGSVGElement.h:
  • svg/SVGSVGElement.idl:
Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/WebCore/ChangeLog

    r47889 r47890  
     12009-08-31  Cameron McCormack  <cam@mcc.id.au>
     2
     3        Reviewed by Eric Seidel.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=28827
     6        SVGSVGElement.unsuspendRedraw() shouldn't throw
     7
     8        * svg/SVGSVGElement.cpp:
     9        (WebCore::SVGSVGElement::unsuspendRedraw):
     10        * svg/SVGSVGElement.h:
     11        * svg/SVGSVGElement.idl:
     12
    1132009-08-31  Kent Tamura  <tkent@chromium.org>
    214
  • TabularUnified trunk/WebCore/svg/SVGSVGElement.cpp

    r43187 r47890  
    314314}
    315315
    316 void SVGSVGElement::unsuspendRedraw(unsigned long /* suspend_handle_id */, ExceptionCode&)
    317 {
    318     // if suspend_handle_id is not found, throw exception
     316void SVGSVGElement::unsuspendRedraw(unsigned long /* suspend_handle_id */)
     317{
    319318    // FIXME: Implement me (see bug 11275)
    320319}
  • TabularUnified trunk/WebCore/svg/SVGSVGElement.h

    r45747 r47890  
    9696
    9797        unsigned long suspendRedraw(unsigned long max_wait_milliseconds);
    98         void unsuspendRedraw(unsigned long suspend_handle_id, ExceptionCode&);
     98        void unsuspendRedraw(unsigned long suspend_handle_id);
    9999        void unsuspendRedrawAll();
    100100        void forceRedraw();
  • TabularUnified trunk/WebCore/svg/SVGSVGElement.idl

    r35674 r47890  
    5757
    5858        unsigned long suspendRedraw(in unsigned long maxWaitMilliseconds);
    59         void unsuspendRedraw(in unsigned long suspendHandleId)
    60             setter raises(DOMException);
     59        void unsuspendRedraw(in unsigned long suspendHandleId);
    6160        void unsuspendRedrawAll();
    6261        void forceRedraw();
Note: See TracChangeset for help on using the changeset viewer.