Changeset 140293 in webkit


Ignore:
Timestamp:
Jan 20, 2013 9:23:41 PM (11 years ago)
Author:
tkent@chromium.org
Message:

Unreviewed, rolling out r140290.
http://trac.webkit.org/changeset/140290
https://bugs.webkit.org/show_bug.cgi?id=107412

Broke tests of inspector and calendar picker in debug build
(Requested by tkent on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2013-01-20

Source/WebCore:

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::styleDidChange):

LayoutTests:

  • fast/css/box-sizing-border-box-dynamic-padding-border-update-expected.txt: Removed.
  • fast/css/box-sizing-border-box-dynamic-padding-border-update.html: Removed.
  • fast/forms/text/text-padding-dynamic-change-expected.html: Removed.
  • fast/forms/text/text-padding-dynamic-change.html: Removed.
Location:
trunk
Files:
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r140292 r140293  
     12013-01-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r140290.
     4        http://trac.webkit.org/changeset/140290
     5        https://bugs.webkit.org/show_bug.cgi?id=107412
     6
     7        Broke tests of inspector and calendar picker in debug build
     8        (Requested by tkent on #webkit).
     9
     10        * fast/css/box-sizing-border-box-dynamic-padding-border-update-expected.txt: Removed.
     11        * fast/css/box-sizing-border-box-dynamic-padding-border-update.html: Removed.
     12        * fast/forms/text/text-padding-dynamic-change-expected.html: Removed.
     13        * fast/forms/text/text-padding-dynamic-change.html: Removed.
     14
    1152013-01-20  Yongsheng Zhu  <yongsheng.zhu@intel.com>
    216
  • trunk/Source/WebCore/ChangeLog

    r140292 r140293  
     12013-01-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r140290.
     4        http://trac.webkit.org/changeset/140290
     5        https://bugs.webkit.org/show_bug.cgi?id=107412
     6
     7        Broke tests of inspector and calendar picker in debug build
     8        (Requested by tkent on #webkit).
     9
     10        * rendering/RenderBox.cpp:
     11        (WebCore::RenderBox::styleDidChange):
     12
    1132013-01-20  Yongsheng Zhu  <yongsheng.zhu@intel.com>
    214
  • trunk/Source/WebCore/rendering/RenderBox.cpp

    r140290 r140293  
    306306    updateExclusionShapeOutsideInfoAfterStyleChange(style()->shapeOutside(), oldStyle ? oldStyle->shapeOutside() : 0);
    307307#endif
    308 
    309     if (oldStyle && (newStyle->boxSizing() == BORDER_BOX || oldStyle->boxSizing() == BORDER_BOX)
    310         && (newStyle->paddingBox() != oldStyle->paddingBox() || newStyle->border() != oldStyle->border())) {
    311         for (RenderBox* child = firstChildBox(); child; child = child->nextSiblingBox())
    312             child->setChildNeedsLayout(true, MarkOnlyThis);
    313     }
    314308}
    315309
Note: See TracChangeset for help on using the changeset viewer.