| Index: third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| index d1e9fbc29a362afc25158ee31c63e16b43233ddd..9d6ea75bfcb7ed5cda0cc04f5bbfe48a62262939 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
|
| @@ -568,7 +568,8 @@ bool LayoutMultiColumnSet::ComputeColumnRuleBounds(
|
| EBorderStyle rule_style = block_style.ColumnRuleStyle();
|
| LayoutUnit rule_thickness(block_style.ColumnRuleWidth());
|
| LayoutUnit col_gap = ColumnGap();
|
| - bool render_rule = rule_style > EBorderStyle::kHidden && !rule_transparent;
|
| + bool render_rule =
|
| + ComputedStyle::BorderStyleIsVisible(rule_style) && !rule_transparent;
|
| if (!render_rule)
|
| return false;
|
|
|
|
|