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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2302743004: Reland Paint solid color backgrounds which are equivalent to locally attached into scrolling conten… (Closed)
Patch Set: Remove unnecessary change. Created 4 years, 3 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 | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 33ee08dfcad4107811b9849b87b02be30f2d8cd6..22f8a497c33ed509926f01c20c1df804fabd3b57 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1268,23 +1268,6 @@ bool ComputedStyle::hasEntirelyFixedBackground() const
return allLayersAreFixed(backgroundLayers());
}
-bool ComputedStyle::hasEntirelyLocalBackground() const
-{
- const FillLayer* layer = &backgroundLayers();
- for (; layer; layer = layer->next()) {
- if (layer->attachment() == LocalBackgroundAttachment)
- continue;
- // Solid color layers with a background clip of the padding box can be treated
- // as local.
- // TODO(flackr): We can handle other fill boxes with solid colors as long as they
- // are essentially the same (i.e. PaddingFillBox == ContentFillBox when padding = 0).
- if (!layer->image() && !layer->next() && layer->clip() == PaddingFillBox)
- continue;
- return false;
- }
- return true;
-}
-
const CounterDirectiveMap* ComputedStyle::counterDirectives() const
{
return m_rareNonInheritedData->m_counterDirectives.get();
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698