[Webkit-unassigned] [Bug 85991] REGRESSION (r116331): RSS Headlines/links are missing (-webkit-box-flex broken?)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 10 15:52:22 PDT 2012


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





--- Comment #12 from Tony Chang <tony at chromium.org>  2012-05-10 15:51:26 PST ---
I think the new behavior is correct.  Here's the CSS of the flex item:
#inner {
    max-width: intrinsic;
    width: 0px;
    overflow: hidden;
    -webkit-box-flex: 60;
}

The max-width is intrinsic, which means it's 0px.  Thus, #inner can't flex bigger than 0.

The main problem is that width is trying to be used both to determine the intrinsic size and it's being used as the starting size for flexing (that's why the author set it to 0 here).  Unfortunately, I'm not sure how to get the same behavior as prior to r116331.

FWIW, new flexbox avoids this by having the starting size for flexing be a part of the flex property rather than overloading 'width' for both.

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