Changeset 24450 in webkit


Ignore:
Timestamp:
Jul 19, 2007, 1:01:26 PM (18 years ago)
Author:
hyatt
Message:

Fix for 5237574, Colloquy main view does not size correctly. Make
sure to reset the baseilne when calculating a row's height/baseline, so
that old values don't stick around.

Reviewed by Tim Hatcher

  • rendering/RenderTableSection.cpp: (WebCore::RenderTableSection::calcRowHeight):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r24447 r24450  
     12007-07-19  David Hyatt  <hyatt@apple.com>
     2
     3        Fix for 5237574, Colloquy main view does not size correctly.  Make
     4        sure to reset the baseilne when calculating a row's height/baseline, so
     5        that old values don't stick around.
     6
     7        Reviewed by Tim Hatcher
     8
     9        * rendering/RenderTableSection.cpp:
     10        (WebCore::RenderTableSection::calcRowHeight):
     11
    1122007-07-19  Antti  <antti@apple.com>
    213
  • trunk/WebCore/rendering/RenderTableSection.cpp

    r21425 r24450  
    320320    for (int r = 0; r < m_gridRows; r++) {
    321321        m_rowPos[r + 1] = 0;
    322 
     322        m_grid[r].baseline = 0;
    323323        int baseline = 0;
    324324        int bdesc = 0;
Note: See TracChangeset for help on using the changeset viewer.