Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Unified Diff: Source/core/css/resolver/StyleBuilderConverter.cpp

Issue 686723002: Improve RAII of StyleResolverState. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix assertions. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/css/resolver/StyleBuilderConverter.cpp
diff --git a/Source/core/css/resolver/StyleBuilderConverter.cpp b/Source/core/css/resolver/StyleBuilderConverter.cpp
index dadc1ec303a7ca5137b07683f4f382574e585638..ae20056edddef5b30dd220bca15ca79ec56116d9 100644
--- a/Source/core/css/resolver/StyleBuilderConverter.cpp
+++ b/Source/core/css/resolver/StyleBuilderConverter.cpp
@@ -225,11 +225,7 @@ FontDescription::Size StyleBuilderConverter::convertFontSize(StyleResolverState&
{
CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
- FontDescription::Size parentSize(0, 0.0f, false);
-
- // FIXME: Find out when parentStyle could be 0?
- if (state.parentStyle())
- parentSize = state.parentFontDescription().size();
+ FontDescription::Size parentSize = state.parentFontDescription().size();
if (CSSValueID valueID = primitiveValue->getValueID()) {
switch (valueID) {

Powered by Google App Engine
This is Rietveld 408576698