git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14356
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
* rendering/RenderBox.cpp:
(WebCore::RenderBox::calcAbsoluteHorizontalValues): Initialize leftValue.
This value will never be used, because 'left' and 'right' cannot both be 'auto'.
+ (WebCore::RenderBox::calcAbsoluteVerticalValues): Initialize topValue.
2006-05-13 Alexey Proskuryakov <ap@nypop.com>
int contentHeight = m_height - bordersPlusPadding;
- int topValue;
+ int topValue = 0;
bool heightIsAuto = height.isAuto();
bool topIsAuto = top.isAuto();