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

Unified Diff: Source/core/rendering/style/RenderStyle.h

Issue 16358010: [CSS Exclusions] Add CSS parsing support for image URI shape-inside and shape-outside values (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/rendering/style/RenderStyle.h
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
index 0507088c9ad88e7f247929f45e6fb15dcd992c89..943c8ab18b84ca34764db6516733e8d1c575beb1 100644
--- a/Source/core/rendering/style/RenderStyle.h
+++ b/Source/core/rendering/style/RenderStyle.h
@@ -1372,7 +1372,7 @@ public:
ExclusionShapeValue* resolvedShapeInside() const
{
ExclusionShapeValue* shapeInside = this->shapeInside();
- if (shapeInside && shapeInside->type() == ExclusionShapeValue::OUTSIDE)
+ if (shapeInside && shapeInside->type() == ExclusionShapeValue::Outside)
return shapeOutside();
return shapeInside;
}

Powered by Google App Engine
This is Rietveld 408576698