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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp

Issue 1734863003: Remove webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 case CSSPropertyMarginLeft: 1132 case CSSPropertyMarginLeft:
1133 case CSSPropertyMarginRight: 1133 case CSSPropertyMarginRight:
1134 case CSSPropertyMarginTop: 1134 case CSSPropertyMarginTop:
1135 case CSSPropertyPaddingBottom: 1135 case CSSPropertyPaddingBottom:
1136 case CSSPropertyPaddingLeft: 1136 case CSSPropertyPaddingLeft:
1137 case CSSPropertyPaddingRight: 1137 case CSSPropertyPaddingRight:
1138 case CSSPropertyPaddingTop: 1138 case CSSPropertyPaddingTop:
1139 case CSSPropertyTextTransform: 1139 case CSSPropertyTextTransform:
1140 case CSSPropertyVerticalAlign: 1140 case CSSPropertyVerticalAlign:
1141 case CSSPropertyWebkitBackgroundClip: 1141 case CSSPropertyWebkitBackgroundClip:
1142 case CSSPropertyWebkitBackgroundComposite:
1143 case CSSPropertyWebkitBackgroundOrigin: 1142 case CSSPropertyWebkitBackgroundOrigin:
1144 case CSSPropertyWebkitBorderAfter: 1143 case CSSPropertyWebkitBorderAfter:
1145 case CSSPropertyWebkitBorderAfterColor: 1144 case CSSPropertyWebkitBorderAfterColor:
1146 case CSSPropertyWebkitBorderAfterStyle: 1145 case CSSPropertyWebkitBorderAfterStyle:
1147 case CSSPropertyWebkitBorderAfterWidth: 1146 case CSSPropertyWebkitBorderAfterWidth:
1148 case CSSPropertyWebkitBorderBefore: 1147 case CSSPropertyWebkitBorderBefore:
1149 case CSSPropertyWebkitBorderBeforeColor: 1148 case CSSPropertyWebkitBorderBeforeColor:
1150 case CSSPropertyWebkitBorderBeforeStyle: 1149 case CSSPropertyWebkitBorderBeforeStyle:
1151 case CSSPropertyWebkitBorderBeforeWidth: 1150 case CSSPropertyWebkitBorderBeforeWidth:
1152 case CSSPropertyWebkitBorderEnd: 1151 case CSSPropertyWebkitBorderEnd:
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 visitor->trace(m_uncommonAttributeRuleSet); 1580 visitor->trace(m_uncommonAttributeRuleSet);
1582 visitor->trace(m_watchedSelectorsRules); 1581 visitor->trace(m_watchedSelectorsRules);
1583 visitor->trace(m_treeBoundaryCrossingScopes); 1582 visitor->trace(m_treeBoundaryCrossingScopes);
1584 visitor->trace(m_styleSharingLists); 1583 visitor->trace(m_styleSharingLists);
1585 visitor->trace(m_pendingStyleSheets); 1584 visitor->trace(m_pendingStyleSheets);
1586 visitor->trace(m_document); 1585 visitor->trace(m_document);
1587 #endif 1586 #endif
1588 } 1587 }
1589 1588
1590 } // namespace blink 1589 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698