Changeset 239427 in webkit for trunk/Source/WebCore/css/CSSStyleDeclaration.cpp
- Timestamp:
- Dec 19, 2018, 8:41:11 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSStyleDeclaration.cpp
r238262 r239427 256 256 } 257 257 258 std::optional<Variant<String, double>> CSSStyleDeclaration::namedItem(const AtomicString& propertyName)258 Optional<Variant<String, double>> CSSStyleDeclaration::namedItem(const AtomicString& propertyName) 259 259 { 260 260 auto propertyInfo = parseJavaScriptCSSPropertyName(propertyName); 261 261 if (!propertyInfo.propertyID) 262 return std::nullopt;262 return WTF::nullopt; 263 263 264 264 auto value = getPropertyCSSValueInternal(propertyInfo.propertyID);
Note:
See TracChangeset
for help on using the changeset viewer.