Changeset 105426 in webkit


Ignore:
Timestamp:
Jan 19, 2012 10:55:20 AM (12 years ago)
Author:
mihnea@adobe.com
Message:

[CSSRegions]Add support for background-color in region styling
https://bugs.webkit.org/show_bug.cgi?id=71488

Reviewed by David Hyatt.

Source/WebCore:

This patch enables region styling again. The region styling tests were also added back.
With the improvements from https://bugs.webkit.org/show_bug.cgi?id=76265, hopefully we will not see the same 3% regressions
in performance.

  • rendering/RenderObject.h:

(WebCore::RenderObject::style):

LayoutTests:

Add back the region styling tests.

  • platform/mac-snowleopard/Skipped:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r105420 r105426  
     12012-01-19  Mihnea Ovidenie  <mihnea@adobe.com>
     2
     3        [CSSRegions]Add support for background-color in region styling
     4        https://bugs.webkit.org/show_bug.cgi?id=71488
     5
     6        Reviewed by David Hyatt.
     7
     8        Add back the region styling tests.
     9
     10        * platform/mac-snowleopard/Skipped:
     11
    1122012-01-19  David Hyatt  <hyatt@apple.com>
    213
  • trunk/LayoutTests/platform/mac-snowleopard/Skipped

    r102955 r105426  
    184184http/tests/media/video-load-twice.html
    185185
    186 # Regression in performance
    187 # https://bugs.webkit.org/show_bug.cgi?id=74141
    188 fast/regions/region-style-block-background-color.html
    189 fast/regions/region-style-block-background-color2.html
    190 fast/regions/region-style-image-background-color.html
    191 fast/regions/region-style-inline-background-color.html
    192 
    193186# HiDPI tests have lower-level platform dependencies on Mac
    194187fast/hidpi
  • trunk/Source/WebCore/ChangeLog

    r105425 r105426  
     12012-01-19  Mihnea Ovidenie  <mihnea@adobe.com>
     2
     3        [CSSRegions]Add support for background-color in region styling
     4        https://bugs.webkit.org/show_bug.cgi?id=71488
     5
     6        Reviewed by David Hyatt.
     7
     8        This patch enables region styling again. The region styling tests were also added back.
     9        With the improvements from https://bugs.webkit.org/show_bug.cgi?id=76265, hopefully we will not see the same 3% regressions
     10        in performance.
     11
     12        * rendering/RenderObject.h:
     13        (WebCore::RenderObject::style):
     14
    1152012-01-16  Jer Noble  <jer.noble@apple.com>
    216
  • trunk/Source/WebCore/rendering/RenderObject.h

    r104965 r105426  
    11111111inline RenderStyle* RenderObject::style() const
    11121112{
    1113     return m_style.get();
     1113    if (!inRenderFlowThread())
     1114        return m_style.get();
     1115    return styleInRegion();
    11141116}
    11151117
Note: See TracChangeset for help on using the changeset viewer.