Changeset 80040 in webkit


Ignore:
Timestamp:
Mar 1, 2011 2:18:32 PM (13 years ago)
Author:
inferno@chromium.org
Message:

2011-03-01 Abhishek Arya <inferno@chromium.org>

Reviewed by Dave Hyatt.

Paint outline for tables.
https://bugs.webkit.org/show_bug.cgi?id=55474

Test: fast/table/table-and-parts-outline.html

  • rendering/RenderTable.cpp: (WebCore::RenderTable::paintObject):

2011-03-01 Abhishek Arya <inferno@chromium.org>

Reviewed by Dave Hyatt.

Tests that we draw outlines for table and table cells.
https://bugs.webkit.org/show_bug.cgi?id=55474

  • fast/table/table-and-parts-outline.html: Added.
  • platform/mac/fast/table/table-and-parts-outline-expected.checksum: Added.
  • platform/mac/fast/table/table-and-parts-outline-expected.png: Added.
  • platform/mac/fast/table/table-and-parts-outline-expected.txt: Added.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r80038 r80040  
     12011-03-01  Abhishek Arya  <inferno@chromium.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        Tests that we draw outlines for table and table cells.
     6        https://bugs.webkit.org/show_bug.cgi?id=55474
     7
     8        * fast/table/table-and-parts-outline.html: Added.
     9        * platform/mac/fast/table/table-and-parts-outline-expected.checksum: Added.
     10        * platform/mac/fast/table/table-and-parts-outline-expected.png: Added.
     11        * platform/mac/fast/table/table-and-parts-outline-expected.txt: Added.
     12
    1132011-03-01  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • trunk/Source/WebCore/ChangeLog

    r80038 r80040  
     12011-03-01  Abhishek Arya  <inferno@chromium.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        Paint outline for tables.
     6        https://bugs.webkit.org/show_bug.cgi?id=55474
     7
     8        Test: fast/table/table-and-parts-outline.html
     9
     10        * rendering/RenderTable.cpp:
     11        (WebCore::RenderTable::paintObject):
     12
    1132011-03-01  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • trunk/Source/WebCore/rendering/RenderTable.cpp

    r79663 r80040  
    517517        m_currentBorder = 0;
    518518    }
     519
     520    // Paint outline.
     521    if ((paintPhase == PaintPhaseOutline || paintPhase == PaintPhaseSelfOutline) && hasOutline() && style()->visibility() == VISIBLE)
     522        paintOutline(paintInfo.context, tx, ty, width(), height());
    519523}
    520524
Note: See TracChangeset for help on using the changeset viewer.