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

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

Issue 415613002: Merge CSSPropertyNames.in and SVGCSSPropertyNames.in with CSSProperties.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix crash without experimental flag Created 6 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
« no previous file with comments | « Source/core/css/SVGCSSPropertyNames.in ('k') | Source/devtools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 } 1284 }
1285 1285
1286 // This method returns the first CSSPropertyId of remaining properties, 1286 // This method returns the first CSSPropertyId of remaining properties,
1287 // i.e. low priority properties. No properties depend on low priority 1287 // i.e. low priority properties. No properties depend on low priority
1288 // properties. So we don't need to resolve such properties quickly. 1288 // properties. So we don't need to resolve such properties quickly.
1289 // All low priority properties are obtained by using 1289 // All low priority properties are obtained by using
1290 // firstCSSPropertyId<LowPriorityProperties> and 1290 // firstCSSPropertyId<LowPriorityProperties> and
1291 // lastCSSPropertyId<LowPriorityProperties>. 1291 // lastCSSPropertyId<LowPriorityProperties>.
1292 template<> CSSPropertyID StyleResolver::firstCSSPropertyId<StyleResolver::LowPri orityProperties>() 1292 template<> CSSPropertyID StyleResolver::firstCSSPropertyId<StyleResolver::LowPri orityProperties>()
1293 { 1293 {
1294 COMPILE_ASSERT(CSSPropertyBackground == CSSPropertyLineHeight + 1, CSS_backg round_is_first_low_priority_property); 1294 COMPILE_ASSERT(CSSPropertyAlignContent == CSSPropertyLineHeight + 1, CSS_bac kground_is_first_low_priority_property);
1295 return CSSPropertyBackground; 1295 return CSSPropertyAlignContent;
1296 } 1296 }
1297 1297
1298 // This method returns the last CSSPropertyId of low priority properties. 1298 // This method returns the last CSSPropertyId of low priority properties.
1299 template<> CSSPropertyID StyleResolver::lastCSSPropertyId<StyleResolver::LowPrio rityProperties>() 1299 template<> CSSPropertyID StyleResolver::lastCSSPropertyId<StyleResolver::LowPrio rityProperties>()
1300 { 1300 {
1301 return static_cast<CSSPropertyID>(lastCSSProperty); 1301 return static_cast<CSSPropertyID>(lastCSSProperty);
1302 } 1302 }
1303 1303
1304 template <StyleResolver::StyleApplicationPass pass> 1304 template <StyleResolver::StyleApplicationPass pass>
1305 bool StyleResolver::isPropertyForPass(CSSPropertyID property) 1305 bool StyleResolver::isPropertyForPass(CSSPropertyID property)
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 visitor->trace(m_uncommonAttributeRuleSet); 1603 visitor->trace(m_uncommonAttributeRuleSet);
1604 visitor->trace(m_watchedSelectorsRules); 1604 visitor->trace(m_watchedSelectorsRules);
1605 visitor->trace(m_treeBoundaryCrossingRules); 1605 visitor->trace(m_treeBoundaryCrossingRules);
1606 visitor->trace(m_styleSharingLists); 1606 visitor->trace(m_styleSharingLists);
1607 visitor->trace(m_pendingStyleSheets); 1607 visitor->trace(m_pendingStyleSheets);
1608 visitor->trace(m_document); 1608 visitor->trace(m_document);
1609 #endif 1609 #endif
1610 } 1610 }
1611 1611
1612 } // namespace blink 1612 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/SVGCSSPropertyNames.in ('k') | Source/devtools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698