CSSCursorImageValue is not a CSSImageValue.
Created attachment 434824 [details] patch
<rdar://81119647>
<rdar://problem/81466490>
Committed r280599 (240217@main): <https://commits.webkit.org/240217@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 434824 [details].
Comment on attachment 434824 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=434824&action=review > Source/WebCore/css/CSSValue.cpp:498 > + if (isImageValue()) > return downcast<CSSImageValue>(this)->createDeprecatedCSSOMWrapper(styleDeclaration); > if (isPrimitiveValue()) Occurs to me that we could come back here and make this more obviously correct by using is<CSSImageValue>, is<CSSPrimitiveValue>, and is<CSSValueList>.