| Index: third_party/WebKit/Source/core/layout/LayoutFieldset.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFieldset.cpp b/third_party/WebKit/Source/core/layout/LayoutFieldset.cpp
|
| index 087b0fcec1517071ea7d12520f1919acb713bcef..40385b970203956c0737c66cb4ff786311754c9d 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFieldset.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFieldset.cpp
|
| @@ -117,9 +117,10 @@ LayoutObject* LayoutFieldset::layoutSpecialExcludedChild(bool relayoutChildren,
|
| // on the legend's margins as we want to still follow the author's cues.
|
| // Firefox completely ignores the margins in this case which seems wrong.
|
| legendLogicalTop = (fieldsetBorderBefore - legendLogicalHeight) / 2;
|
| - collapsedLegendExtent = max<LayoutUnit>(
|
| - fieldsetBorderBefore, legendLogicalTop + legendLogicalHeight +
|
| - marginAfterForChild(*legend));
|
| + collapsedLegendExtent =
|
| + max<LayoutUnit>(fieldsetBorderBefore,
|
| + legendLogicalTop + legendLogicalHeight +
|
| + marginAfterForChild(*legend));
|
| } else {
|
| collapsedLegendExtent =
|
| legendLogicalHeight + marginAfterForChild(*legend);
|
|
|