Changeset 285714 in webkit for trunk/Source/WebCore/css/CSSCustomPropertyValue.cpp
- Timestamp:
- Nov 12, 2021, 4:48:43 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSCustomPropertyValue.cpp
r284095 r285714 27 27 #include "CSSCustomPropertyValue.h" 28 28 29 #include "CSSParserIdioms.h" 29 30 #include "CSSTokenizer.h" 30 31 … … 34 35 { 35 36 return adoptRef(*new CSSCustomPropertyValue(name, std::monostate { })); 37 } 38 39 Ref<CSSCustomPropertyValue> CSSCustomPropertyValue::createWithID(const AtomString& name, CSSValueID id) 40 { 41 ASSERT(WebCore::isCSSWideKeyword(id) || id == CSSValueInvalid); 42 return adoptRef(*new CSSCustomPropertyValue(name, { id })); 36 43 } 37 44
Note:
See TracChangeset
for help on using the changeset viewer.