WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
23126
Add DRT API to retrieve number of active animations from AnimationController
https://bugs.webkit.org/show_bug.cgi?id=23126
Summary
Add DRT API to retrieve number of active animations from AnimationController
Pierre-Olivier Latour
Reported
2009-01-05 16:47:18 PST
We need a DRT API to retrieve number of active animations from AnimationController: we have some failure cases where the AnimationController is running while it shouldn't and we should be able to have regression tests for them.
Attachments
Patch v1
(17.73 KB, patch)
2009-01-06 16:31 PST
,
Pierre-Olivier Latour
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Pierre-Olivier Latour
Comment 1
2009-01-06 16:31:11 PST
Created
attachment 26481
[details]
Patch v1
Darin Adler
Comment 2
2009-01-06 17:35:29 PST
Comment on
attachment 26481
[details]
Patch v1
> + RefPtr<CompositeAnimation> compAnim = it->second; > + count += compAnim->numberOfActiveAnimations();
This will unnecessarily churn the reference count of the animation. You should either use a raw pointer for the local variable, or just use it->second directly. r=me
Pierre-Olivier Latour
Comment 3
2009-01-06 17:59:19 PST
(including Darin's recommended change) Sending LayoutTests/ChangeLog Adding LayoutTests/animations/animation-controller-drt-api-expected.txt Adding LayoutTests/animations/animation-controller-drt-api.html Sending LayoutTests/platform/win/Skipped Sending WebCore/ChangeLog Sending WebCore/WebCore.base.exp Sending WebCore/page/animation/AnimationController.cpp Sending WebCore/page/animation/AnimationController.h Sending WebCore/page/animation/CompositeAnimation.cpp Sending WebCore/page/animation/CompositeAnimation.h Sending WebKit/mac/ChangeLog Sending WebKit/mac/WebView/WebFrame.mm Sending WebKit/mac/WebView/WebFramePrivate.h Sending WebKitTools/ChangeLog Sending WebKitTools/DumpRenderTree/LayoutTestController.cpp Sending WebKitTools/DumpRenderTree/LayoutTestController.h Sending WebKitTools/DumpRenderTree/mac/LayoutTestControllerMac.mm Sending WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp Transmitting file data .................. Committed revision 39669.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug