| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CSSPropertyPriority_h | 5 #ifndef CSSPropertyPriority_h |
| 6 #define CSSPropertyPriority_h | 6 #define CSSPropertyPriority_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 | 11 |
| 12 // The values of high priority properties affect the values of low priority | 12 // The values of high priority properties affect the values of low priority |
| 13 // properties. For example, the value of the high priority property 'font-size' | 13 // properties. For example, the value of the high priority property 'font-size' |
| 14 // decides the pixel value of low priority properties with 'em' units. | 14 // decides the pixel value of low priority properties with 'em' units. |
| 15 | 15 |
| 16 enum CSSPropertyPriority { | 16 enum CSSPropertyPriority { |
| 17 ResolveVariables, |
| 17 HighPropertyPriority, | 18 HighPropertyPriority, |
| 18 LowPropertyPriority | 19 LowPropertyPriority |
| 19 }; | 20 }; |
| 20 | 21 |
| 21 template <CSSPropertyPriority priority> | 22 template <CSSPropertyPriority priority> |
| 22 class CSSPropertyPriorityData { | 23 class CSSPropertyPriorityData { |
| 23 public: | 24 public: |
| 24 static inline CSSPropertyID first(); | 25 static inline CSSPropertyID first(); |
| 25 static inline CSSPropertyID last(); | 26 static inline CSSPropertyID last(); |
| 26 static inline bool propertyHasPriority(CSSPropertyID prop) | 27 static inline bool propertyHasPriority(CSSPropertyID prop) |
| 27 { | 28 { |
| 28 return first() <= prop && prop <= last(); | 29 return first() <= prop && prop <= last(); |
| 29 } | 30 } |
| 30 }; | 31 }; |
| 31 | 32 |
| 32 template<> | 33 template<> |
| 34 inline CSSPropertyID CSSPropertyPriorityData<ResolveVariables>::first() |
| 35 { |
| 36 return CSSPropertyVariable; |
| 37 } |
| 38 |
| 39 template<> |
| 40 inline CSSPropertyID CSSPropertyPriorityData<ResolveVariables>::last() |
| 41 { |
| 42 return CSSPropertyVariable; |
| 43 } |
| 44 |
| 45 template<> |
| 33 inline CSSPropertyID CSSPropertyPriorityData<HighPropertyPriority>::first() | 46 inline CSSPropertyID CSSPropertyPriorityData<HighPropertyPriority>::first() |
| 34 { | 47 { |
| 35 static_assert(CSSPropertyColor == firstCSSProperty, "CSSPropertyColor should
be the first high priority property"); | 48 static_assert(CSSPropertyColor == firstCSSProperty, "CSSPropertyColor should
be the first high priority property"); |
| 36 return CSSPropertyColor; | 49 return CSSPropertyColor; |
| 37 } | 50 } |
| 38 | 51 |
| 39 template<> | 52 template<> |
| 40 inline CSSPropertyID CSSPropertyPriorityData<HighPropertyPriority>::last() | 53 inline CSSPropertyID CSSPropertyPriorityData<HighPropertyPriority>::last() |
| 41 { | 54 { |
| 42 static_assert(CSSPropertyZoom == CSSPropertyColor + 17, "CSSPropertyZoom sho
uld be the end of the high priority property range"); | 55 static_assert(CSSPropertyZoom == CSSPropertyColor + 17, "CSSPropertyZoom sho
uld be the end of the high priority property range"); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 53 | 66 |
| 54 template<> | 67 template<> |
| 55 inline CSSPropertyID CSSPropertyPriorityData<LowPropertyPriority>::last() | 68 inline CSSPropertyID CSSPropertyPriorityData<LowPropertyPriority>::last() |
| 56 { | 69 { |
| 57 return static_cast<CSSPropertyID>(lastCSSProperty); | 70 return static_cast<CSSPropertyID>(lastCSSProperty); |
| 58 } | 71 } |
| 59 | 72 |
| 60 } // namespace blink | 73 } // namespace blink |
| 61 | 74 |
| 62 #endif // CSSPropertyPriority_h | 75 #endif // CSSPropertyPriority_h |
| OLD | NEW |