Changeset 47890 in webkit
- Timestamp:
- Aug 31, 2009, 4:06:26 AM (16 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/WebCore/ChangeLog ¶
r47889 r47890 1 2009-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 1 13 2009-08-31 Kent Tamura <tkent@chromium.org> 2 14 -
TabularUnified trunk/WebCore/svg/SVGSVGElement.cpp ¶
r43187 r47890 314 314 } 315 315 316 void SVGSVGElement::unsuspendRedraw(unsigned long /* suspend_handle_id */, ExceptionCode&) 317 { 318 // if suspend_handle_id is not found, throw exception 316 void SVGSVGElement::unsuspendRedraw(unsigned long /* suspend_handle_id */) 317 { 319 318 // FIXME: Implement me (see bug 11275) 320 319 } -
TabularUnified trunk/WebCore/svg/SVGSVGElement.h ¶
r45747 r47890 96 96 97 97 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); 99 99 void unsuspendRedrawAll(); 100 100 void forceRedraw(); -
TabularUnified trunk/WebCore/svg/SVGSVGElement.idl ¶
r35674 r47890 57 57 58 58 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); 61 60 void unsuspendRedrawAll(); 62 61 void forceRedraw();
Note:
See TracChangeset
for help on using the changeset viewer.