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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2068723002: Paint local attachment backgrounds into composited scrolling contents layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improve opaque layer detection and fix non-composited border painting bug in layout tests. Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 bool hasBorder() const { return m_surround->border.hasBorder(); } 420 bool hasBorder() const { return m_surround->border.hasBorder(); }
421 bool hasBorderDecoration() const { return hasBorder() || hasBorderFill(); } 421 bool hasBorderDecoration() const { return hasBorder() || hasBorderFill(); }
422 bool hasPadding() const { return m_surround->padding.nonZero(); } 422 bool hasPadding() const { return m_surround->padding.nonZero(); }
423 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); } 423 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); }
424 bool hasMarginAfterQuirk() const { return marginAfter().quirk(); } 424 bool hasMarginAfterQuirk() const { return marginAfter().quirk(); }
425 425
426 bool hasBackgroundImage() const { return m_background->background().hasImage (); } 426 bool hasBackgroundImage() const { return m_background->background().hasImage (); }
427 bool hasFixedBackgroundImage() const { return m_background->background().has FixedImage(); } 427 bool hasFixedBackgroundImage() const { return m_background->background().has FixedImage(); }
428 428
429 bool hasEntirelyFixedBackground() const; 429 bool hasEntirelyFixedBackground() const;
430 bool hasEntirelyLocalBackground() const;
430 431
431 bool hasAppearance() const { return appearance() != NoControlPart; } 432 bool hasAppearance() const { return appearance() != NoControlPart; }
432 433
433 bool hasBackgroundRelatedColorReferencingCurrentColor() const 434 bool hasBackgroundRelatedColorReferencingCurrentColor() const
434 { 435 {
435 if (backgroundColor().isCurrentColor() || visitedLinkBackgroundColor().i sCurrentColor()) 436 if (backgroundColor().isCurrentColor() || visitedLinkBackgroundColor().i sCurrentColor())
436 return true; 437 return true;
437 if (!boxShadow()) 438 if (!boxShadow())
438 return false; 439 return false;
439 return shadowListHasCurrentColor(boxShadow()); 440 return shadowListHasCurrentColor(boxShadow());
(...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 } 2066 }
2066 2067
2067 inline bool ComputedStyle::hasPseudoElementStyle() const 2068 inline bool ComputedStyle::hasPseudoElementStyle() const
2068 { 2069 {
2069 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask; 2070 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask;
2070 } 2071 }
2071 2072
2072 } // namespace blink 2073 } // namespace blink
2073 2074
2074 #endif // ComputedStyle_h 2075 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698