Index: Source/core/css/resolver/StyleAdjuster.cpp |
diff --git a/Source/core/css/resolver/StyleAdjuster.cpp b/Source/core/css/resolver/StyleAdjuster.cpp |
index 4d2c58d997dced2fa1e17cb82a27ca1793f308ea..be3d89497722be5bfc7d69786a6c39b3ebb2b8a3 100644 |
--- a/Source/core/css/resolver/StyleAdjuster.cpp |
+++ b/Source/core/css/resolver/StyleAdjuster.cpp |
@@ -157,7 +157,7 @@ |
return false; |
} |
-void StyleAdjuster::adjustComputedStyle(ComputedStyle& style, const ComputedStyle& parentStyle, Element *e) |
+void StyleAdjuster::adjustComputedStyle(ComputedStyle& style, const ComputedStyle& parentStyle, Element *e, const AuthorStyleInfo& authorStyle) |
{ |
if (style.display() != NONE) { |
if (e && e->isHTMLElement()) |
@@ -224,7 +224,7 @@ |
// Let the theme also have a crack at adjusting the style. |
if (style.hasAppearance()) |
- LayoutTheme::theme().adjustStyle(style, e); |
+ LayoutTheme::theme().adjustStyle(style, e, authorStyle); |
// If we have first-letter pseudo style, transitions, or animations, do not share this style. |
if (style.hasPseudoStyle(FIRST_LETTER) || style.transitions() || style.animations()) |