Changeset 143555 in webkit
- Timestamp:
 - Feb 20, 2013, 7:26:10 PM (13 years ago)
 - Location:
 - trunk/Source/WebCore
 - Files:
 - 
      
- 2 edited
 
- 
          
  ChangeLog (modified) (1 diff)
 - 
          
  rendering/AutoTableLayout.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/Source/WebCore/ChangeLog
r143554 r143555 1 2013-02-20 Ojan Vafai <ojan@chromium.org> 2 3 AutoTableLayout applies min-width redundantly with RenderTable 4 https://bugs.webkit.org/show_bug.cgi?id=110426 5 6 Reviewed by Emil A Eklund. 7 8 * rendering/AutoTableLayout.cpp: 9 (WebCore::AutoTableLayout::computePreferredLogicalWidths): 10 This code used to do something, but has since been superceded by 11 code in RenderTable::computePreferredLogicalWidths. 12 1 13 2013-02-20 Dirk Schulze <krit@webkit.org> 2 14  - 
      
trunk/Source/WebCore/rendering/AutoTableLayout.cpp
r140047 r143555 261 261 maxWidth = tableMaxWidth; 262 262 } 263 264 Length tableLogicalMinWidth = m_table->style()->logicalMinWidth();265 if (tableLogicalMinWidth.isFixed() && tableLogicalMinWidth.isPositive()) {266 minWidth = max<int>(minWidth, tableLogicalMinWidth.value());267 maxWidth = max<int>(minWidth, maxWidth);268 }269 263 } 270 264  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.