| Summary: | Web Inspector: Improve names for unprefixed animation events | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> | ||||
| Component: | Web Inspector | Assignee: | 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: |
|
||||||
Created attachment 256352 [details]
[PATCH] Proposed Fix
Comment on attachment 256352 [details]
[PATCH] Proposed Fix
Should it distinguish between "webkitAnimationEnd" and "animationend" in the UI?
Comment on attachment 256352 [details] [PATCH] Proposed Fix Clearing flags on attachment: 256352 Committed r186488: <http://trac.webkit.org/changeset/186488> All reviewed patches have been landed. Closing bug. |
* 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"