[Webkit-unassigned] [Bug 119132] New: Fix Length blend() handling of Undefined lengths

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 25 22:30:22 PDT 2013


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

           Summary: Fix Length blend() handling of Undefined lengths
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Keywords: BlinkMergeCandidate
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rniwa at webkit.org
                CC: bdakin at apple.com, koivisto at iki.fi,
                    simon.fraser at apple.com, dino at apple.com,
                    akling at apple.com, eoconnor at apple.com


Consider merging https://chromium.googlesource.com/chromium/blink/+/20468ab60e2454e3933b1542cc0852db8c43807c

Fixed transition behaviour when animating to/from 'none' keyword instead of hitting ASSERT failure.

     Length blend(const Length& from, double progress) const
     {
+        if (isUndefined() || from.isUndefined())
+            return *this;
+

-- 
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