Index: Source/core/inspector/InspectorCSSAgent.cpp |
diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp |
index ca2f6a2821788d1a96ab47d2ed75598cfaa374b9..cd780481434e361d7ad60b9665863aa13774bf6a 100644 |
--- a/Source/core/inspector/InspectorCSSAgent.cpp |
+++ b/Source/core/inspector/InspectorCSSAgent.cpp |
@@ -432,7 +432,7 @@ void InspectorCSSAgent::didMutateRules(CSSStyleSheet* styleSheet) |
if (!styleSheetEditInProgress()) { |
Document* owner = styleSheet->ownerDocument(); |
if (owner) |
- owner->modifiedStyleSheet(styleSheet, RecalcStyleDeferred, FullStyleUpdate); |
+ owner->modifiedStyleSheet(styleSheet, FullStyleUpdate); |
} |
} |
@@ -449,7 +449,7 @@ void InspectorCSSAgent::didMutateStyle(CSSStyleDeclaration* style, bool isInline |
CSSStyleSheet* parentSheet = style->parentStyleSheet(); |
Document* owner = parentSheet ? parentSheet->ownerDocument() : 0; |
if (owner) |
- owner->modifiedStyleSheet(parentSheet, RecalcStyleDeferred, FullStyleUpdate); |
+ owner->modifiedStyleSheet(parentSheet, FullStyleUpdate); |
} |
} |