| Summary: | Web Inspector: Drop webkit prefixes from animation, keyframes and transform | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Timothy Hatcher <timothy> | ||||
| Component: | Web Inspector | Assignee: | Timothy Hatcher <timothy> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | bburg, commit-queue, graouts, joepeck, mattbaker, nvasilyev, timothy, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Local Build | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Attachments: |
|
||||||
|
Description
Timothy Hatcher
2015-08-22 19:08:01 PDT
Created attachment 259727 [details]
Patch
Comment on attachment 259727 [details] Patch Clearing flags on attachment: 259727 Committed r188837: <http://trac.webkit.org/changeset/188837> All reviewed patches have been landed. Closing bug. Comment on attachment 259727 [details]
Patch
There are a number of listeners for "webkitAnimationEnd". Do these also need to change to "animationEnd"?
Views/DashboardContainerView.js
193: dashboardView.element.removeEventListener("webkitAnimationEnd", animationEnded);
200: dashboardView.element.addEventListener("webkitAnimationEnd", animationEnded);
226: dashboardView.element.removeEventListener("webkitAnimationEnd", animationEnded);
237: dashboardView.element.addEventListener("webkitAnimationEnd", animationEnded);
Views/DefaultDashboardView.js
167: container.removeEventListener("webkitAnimationEnd", animationEnded);
177: container.addEventListener("webkitAnimationEnd", animationEnded);
Views/DOMTreeElement.js
102: this._bouncyHighlightElement.addEventListener("webkitAnimationEnd", animationEnded.bind(this));
Views/TextEditor.js
963: this._bouncyHighlightElement.addEventListener("webkitAnimationEnd", animationEnded.bind(this));
Good catch. Fixed in bug 148385. |