Index: Source/core/rendering/style/RenderStyle.cpp |
diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp |
index 44183b6f552cd27d76e54375145e2bd8bc029880..a78996704b7d0b7d1a9e550f80a9aeabedd55631 100644 |
--- a/Source/core/rendering/style/RenderStyle.cpp |
+++ b/Source/core/rendering/style/RenderStyle.cpp |
@@ -508,6 +508,9 @@ bool RenderStyle::diffNeedsFullLayoutAndPaintInvalidation(const RenderStyle& oth |
if (inherited->textAutosizingMultiplier != other.inherited->textAutosizingMultiplier) |
return true; |
+ if (inherited->font.loadingCustomFonts() != other.inherited->font.loadingCustomFonts()) |
+ return true; |
+ |
if (inherited.get() != other.inherited.get()) { |
if (inherited->line_height != other.inherited->line_height |
|| inherited->font != other.inherited->font |