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

Unified Diff: sky/engine/core/rendering/RenderObject.cpp

Issue 698613002: Remove border-fit. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « sky/engine/core/rendering/RenderObject.h ('k') | sky/engine/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/rendering/RenderObject.cpp
diff --git a/sky/engine/core/rendering/RenderObject.cpp b/sky/engine/core/rendering/RenderObject.cpp
index 3362c77633296d2d63daa5b424a4f7f600e95afb..eb88ee3262426eeabbbfb0d337f28b2126dcada6 100644
--- a/sky/engine/core/rendering/RenderObject.cpp
+++ b/sky/engine/core/rendering/RenderObject.cpp
@@ -1364,8 +1364,6 @@ const char* RenderObject::invalidationReasonToString(InvalidationReason reason)
return "incremental";
case InvalidationFull:
return "full";
- case InvalidationBorderFitLines:
- return "border fit lines";
case InvalidationBorderBoxChange:
return "border box change";
case InvalidationBoundsChange:
@@ -1445,10 +1443,6 @@ InvalidationReason RenderObject::getPaintInvalidationReason(const RenderLayerMod
if (shouldDoFullPaintInvalidation())
return InvalidationFull;
- // Presumably a background or a border exists if border-fit:lines was specified.
- if (style()->borderFit() == BorderFitLines)
- return InvalidationBorderFitLines;
-
if (compositingState() != PaintsIntoOwnBacking && newLocation != oldLocation)
return InvalidationLocationChange;
« no previous file with comments | « sky/engine/core/rendering/RenderObject.h ('k') | sky/engine/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698