[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 23:36:25 PDT 2012


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





--- Comment #20 from Pravin D <pravind.2k4 at gmail.com>  2012-05-10 23:35:29 PST ---
(In reply to comment #14)
> Created an attachment (id=141289)
 --> (https://bugs.webkit.org/attachment.cgi?id=141289&action=review) [details]
> Patch

> if (!isTableCell() && styleToUse->logicalWidth().isFixed() 
  && styleToUse->logicalWidth().value() >= 0 && style()->marqueeBehavior() !=      MALTERNATE && !isDeprecatedFlexItem())

Hey Tony you need to add a check for width:0 also in the deprecated flex box case. 
Behavior before r116331
When the width > 0 then the width is taken
otherwise calculated width of the content is taken.

So !isDeprecatedFlexItem() will become 
!(isDeprecatedFlexItem() && styleToUse->logicalWidth().value()==0) shuld restore the behavior in case of flex box prior to r116331.

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