[Webkit-unassigned] [Bug 113648] New: Results of "style.transition* = 'any-value'; " shouldn't contain vendor-prefixed properties.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Mar 30 18:01:50 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=113648

           Summary: Results of "style.transition* = 'any-value';"
                    shouldn't contain vendor-prefixed properties.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: syoichi at outlook.com
                CC: hyatt at apple.com, dino at apple.com, alexis at webkit.org


Created an attachment (id=195881)
 --> (https://bugs.webkit.org/attachment.cgi?id=195881&action=review)
test case

I noticed that this code shows "transition: none; -webkit-transition: none;" in Chrome 26.0.1410.43, on Windows 7 Home Premium SP1 64bit.

document.body.style.transition = 'none';
alert(document.body.style.cssText);

So I tested for transition properties by using test case in browsers.

Results of test case in Chromium 28.0.1458.0 (191559):
transition: all; -webkit-transition: all;
transition: 0s; -webkit-transition: 0s;
transition: ease; -webkit-transition: ease;
transition: 0s; -webkit-transition: 0s;
transition: none; -webkit-transition: none;

Results of test case in Internet Explorer 10:
transition-property: all;
transition-duration: 0s;
transition-timing-function: ease;
transition-delay: 0s;
transition:none;

Results of test case in Firefox Nightly 22.0a1(buildID 20130330030828):
transition-property: all;
transition-duration: 0s;
transition-timing-function: ease;
transition-delay: 0s;
transition: none 0s ease 0s ;

Results of test case in Opera 12.14:
transition-property: all;
transition-duration: 0s;
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
transition-delay: 0s;
transition-delay: 0; transition-duration: 0; transition-property: none; transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);

I think that WebKit should shows like Internet Explorer 10 or Firefox Nightly 22.0a1.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list