Bug 368600 - "Table with table-layout: fixed has unconstrained width even when width specified on cell" [p=bernd_mozilla@gmx.de (Bernd) r+sr+a1.9=dbaron]

This commit is contained in:
reed%reedloden.com 2007-10-22 04:40:02 +00:00
Родитель 41e4e5066a
Коммит 268f9b6472
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -3530,8 +3530,7 @@ nsTableFrame::IsAutoLayout()
// (at least as long as FixedTableLayoutStrategy::GetPrefWidth returns
// nscoord_MAX)
const nsStyleCoord &width = GetStylePosition()->mWidth;
return (GetStyleDisplay()->mDisplay == NS_STYLE_DISPLAY_INLINE_TABLE &&
width.GetUnit() == eStyleUnit_Auto) ||
return (width.GetUnit() == eStyleUnit_Auto) ||
(width.GetUnit() == eStyleUnit_Enumerated &&
width.GetIntValue() == NS_STYLE_WIDTH_INTRINSIC);
}