Bug 146708

Summary: Web Inspector: Improve names for unprefixed animation events
Product: WebKit Reporter: Joseph Pecoraro <joepeck>
Component: Web InspectorAssignee: Joseph Pecoraro <joepeck>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, dino, graouts, joepeck, jonowells, mattbaker, nvasilyev, simon.fraser, timothy, webkit-bug-importer
Priority: P2 Keywords: DoNotImportToRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
[PATCH] Proposed Fix none

Joseph Pecoraro
Reported 2015-07-07 20:41:22 PDT
* SUMMARY Improve names for unprefixed animation events. * TEST <style> div { width: 100px; height: 100px; background-color: red; animation-name: example; animation-duration: 4s; } @keyframes example { from {background-color: red;} to {background-color: yellow;} } </style> <div id="x"></div> <script> var box = document.getElementById('x'); box.addEventListener("animationend", function(e) { console.log("animationend", e); }); </script> * STEPS TO REPRODUCE 1. Record timeline of Test until animation end event => "Animationend Event Dispatched" should be "Animation End Event Dispatched"
Attachments
[PATCH] Proposed Fix (1.47 KB, patch)
2015-07-07 20:41 PDT, Joseph Pecoraro
no flags
Joseph Pecoraro
Comment 1 2015-07-07 20:41:59 PDT
Created attachment 256352 [details] [PATCH] Proposed Fix
Simon Fraser (smfr)
Comment 2 2015-07-07 21:51:54 PDT
Comment on attachment 256352 [details] [PATCH] Proposed Fix Should it distinguish between "webkitAnimationEnd" and "animationend" in the UI?
WebKit Commit Bot
Comment 3 2015-07-07 22:24:50 PDT
Comment on attachment 256352 [details] [PATCH] Proposed Fix Clearing flags on attachment: 256352 Committed r186488: <http://trac.webkit.org/changeset/186488>
WebKit Commit Bot
Comment 4 2015-07-07 22:24:55 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.