Bug 119588 - Unprefix use of transitions in Web Inspector code
Summary: Unprefix use of transitions in Web Inspector code
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Dean Jackson
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2013-08-08 12:03 PDT by Dean Jackson
Modified: 2013-08-08 13:07 PDT (History)
4 users (show)

See Also:


Attachments
Patch (4.48 KB, patch)
2013-08-08 12:05 PDT, Dean Jackson
timothy: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dean Jackson 2013-08-08 12:03:34 PDT
The Web Inspector UI still uses prefixed transitions.
Comment 1 Radar WebKit Bug Importer 2013-08-08 12:03:53 PDT
<rdar://problem/14688281>
Comment 2 Dean Jackson 2013-08-08 12:05:07 PDT
Created attachment 208360 [details]
Patch
Comment 3 Timothy Hatcher 2013-08-08 12:08:03 PDT
Comment on attachment 208360 [details]
Patch

What a sin! Thanks for fixing.
Comment 4 Dean Jackson 2013-08-08 12:24:08 PDT
Committed r153840: <http://trac.webkit.org/changeset/153840>
Comment 5 Joseph Pecoraro 2013-08-08 13:07:06 PDT
Comment on attachment 208360 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=208360&action=review

> Source/WebInspectorUI/UserInterface/Popover.css:51
> -    -webkit-transition: opacity 350ms;
> +    transition: opacity 350ms;

Will this break Popover.js, which depends on the "webkitTransitionEnd" event? Or, at least can that be updated to just be "transitionEnd"?