Index: Source/core/html/HTMLTableElement.cpp |
diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp |
index e5d8f813d09ab0367dc8bbb8d7d50601d56d729a..d6b2e6bfa0fd343f4d3db994b6d70385dc675a76 100644 |
--- a/Source/core/html/HTMLTableElement.cpp |
+++ b/Source/core/html/HTMLTableElement.cpp |
@@ -409,8 +409,8 @@ const StylePropertySet* HTMLTableElement::additionalPresentationAttributeStyle() |
// Setting the border to 'hidden' allows it to win over any border |
// set on the table's cells during border-conflict resolution. |
if (m_rulesAttr != UnsetRules) { |
- DEFINE_STATIC_REF_WILL_BE_PERSISTENT(StylePropertySet, solidBorderStyle, (createBorderStyle(CSSValueHidden))); |
- return solidBorderStyle; |
+ DEFINE_STATIC_REF_WILL_BE_PERSISTENT(StylePropertySet, hiddenBorderStyle, (createBorderStyle(CSSValueHidden))); |
tkent
2014/12/10 02:34:58
This change is not related to the topic of this CL
|
+ return hiddenBorderStyle; |
} |
return nullptr; |
} |