RESOLVED FIXED 64765
add new flexbox data to StyleRareNonInheritedData
https://bugs.webkit.org/show_bug.cgi?id=64765
Summary add new flexbox data to StyleRareNonInheritedData
Tony Chang
Reported 2011-07-18 16:48:42 PDT
add new flexbox data to StyleRareNonInheritedData
Attachments
Patch (25.56 KB, patch)
2011-07-18 16:51 PDT, Tony Chang
no flags
Patch for landing (25.49 KB, patch)
2011-07-20 11:53 PDT, Tony Chang
no flags
Tony Chang
Comment 1 2011-07-18 16:51:35 PDT
Dave Hyatt
Comment 2 2011-07-20 11:42:36 PDT
Comment on attachment 101235 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=101235&action=review r=me. One small nit. > Source/WebCore/rendering/style/RenderStyle.h:1313 > + static float initialFlexboxWidthPositiveFlex() { return 0.0; } > + static float initialFlexboxWidthNegativeFlex() { return 0.0; } > + static float initialFlexboxHeightPositiveFlex() { return 0.0; } > + static float initialFlexboxHeightNegativeFlex() { return 0.0; } You can actually just say "0" here. You don't have to say "0.0"
Tony Chang
Comment 3 2011-07-20 11:53:59 PDT
Created attachment 101490 [details] Patch for landing
WebKit Review Bot
Comment 4 2011-07-20 13:06:14 PDT
Comment on attachment 101490 [details] Patch for landing Clearing flags on attachment: 101490 Committed r91392: <http://trac.webkit.org/changeset/91392>
WebKit Review Bot
Comment 5 2011-07-20 13:06:19 PDT
All reviewed patches have been landed. Closing bug.
Andy Estes
Comment 6 2011-07-20 14:10:14 PDT
Fixed the Mac build in <http://trac.webkit.org/changeset/91402>.
Tony Chang
Comment 7 2011-07-20 14:16:20 PDT
(In reply to comment #6) > Fixed the Mac build in <http://trac.webkit.org/changeset/91402>. Thanks for fixing! Do you know why the ews bot didn't complain?
Andy Estes
Comment 8 2011-07-20 14:23:50 PDT
(In reply to comment #7) > (In reply to comment #6) > > Fixed the Mac build in <http://trac.webkit.org/changeset/91402>. > > Thanks for fixing! Do you know why the ews bot didn't complain? np! I think EWS bots only do incremental recompiles, so since you didn't touch any downstream code that relies on WebCore's forwarding headers (e.g. WebKit), you didn't see the error. I just happened to do a clean build this morning.
Andy Estes
Comment 9 2011-07-20 14:27:32 PDT
Although on second thought, you did touch RenderStyle.h which was already a forwarded header, so that should have caused some WebKit code to recompile. So it's unclear to me why EWS didn't catch it, given this. Does the Mac EWS bot no longer compile the Apple port or something?
Note You need to log in before you can comment on or make changes to this bug.