Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 27ec4caed72d3e84130caf00c84de2b7a3df5566
      
https://github.com/WebKit/WebKit/commit/27ec4caed72d3e84130caf00c84de2b7a3df5566
  Author: Chris Dumez <[email protected]>
  Date:   2025-10-06 (Mon, 06 Oct 2025)

  Changed paths:
    M Source/WebCore/Sources.txt
    M Source/WebCore/WebCore.xcodeproj/project.pbxproj
    R Source/WebCore/bindings/js/JSCSSStyleValueCustom.cpp
    M Source/WebCore/bindings/js/JSCSSTransformComponentCustom.cpp
    M Source/WebCore/css/typedom/CSSKeywordValue.h
    M Source/WebCore/css/typedom/CSSNumericValue.h
    M Source/WebCore/css/typedom/CSSStyleImageValue.h
    M Source/WebCore/css/typedom/CSSStyleValue.h
    M Source/WebCore/css/typedom/CSSStyleValue.idl
    M Source/WebCore/css/typedom/CSSUnitValue.h
    M Source/WebCore/css/typedom/CSSUnparsedValue.h
    M Source/WebCore/css/typedom/color/CSSHSL.h
    M Source/WebCore/css/typedom/color/CSSHWB.h
    M Source/WebCore/css/typedom/color/CSSLCH.h
    M Source/WebCore/css/typedom/color/CSSLab.h
    M Source/WebCore/css/typedom/color/CSSOKLCH.h
    M Source/WebCore/css/typedom/color/CSSOKLab.h
    M Source/WebCore/css/typedom/color/CSSOMColor.h
    M Source/WebCore/css/typedom/color/CSSOMColorValue.h
    M Source/WebCore/css/typedom/color/CSSRGB.h
    M Source/WebCore/css/typedom/numeric/CSSMathClamp.h
    M Source/WebCore/css/typedom/numeric/CSSMathInvert.h
    M Source/WebCore/css/typedom/numeric/CSSMathMax.h
    M Source/WebCore/css/typedom/numeric/CSSMathMin.h
    M Source/WebCore/css/typedom/numeric/CSSMathNegate.h
    M Source/WebCore/css/typedom/numeric/CSSMathProduct.h
    M Source/WebCore/css/typedom/numeric/CSSMathSum.h
    M Source/WebCore/css/typedom/numeric/CSSMathValue.h
    M Source/WebCore/css/typedom/transform/CSSMatrixComponent.h
    M Source/WebCore/css/typedom/transform/CSSPerspective.h
    M Source/WebCore/css/typedom/transform/CSSRotate.h
    M Source/WebCore/css/typedom/transform/CSSScale.h
    M Source/WebCore/css/typedom/transform/CSSSkew.h
    M Source/WebCore/css/typedom/transform/CSSSkewX.h
    M Source/WebCore/css/typedom/transform/CSSSkewY.h
    M Source/WebCore/css/typedom/transform/CSSTransformComponent.h
    M Source/WebCore/css/typedom/transform/CSSTransformValue.h
    M Source/WebCore/css/typedom/transform/CSSTranslate.h

  Log Message:
  -----------
  Drop custom toJS() / toJSNewlyCreated() functions for CSSStyleValue
https://bugs.webkit.org/show_bug.cgi?id=300229

Reviewed by Darin Adler.

Drop custom toJS() / toJSNewlyCreated() functions for CSSStyleValue
now that it is no longer needed after 301038@main.

* Source/WebCore/Sources.txt:
* Source/WebCore/WebCore.xcodeproj/project.pbxproj:
* Source/WebCore/bindings/js/JSCSSStyleValueCustom.cpp: Removed.
* Source/WebCore/bindings/js/JSCSSTransformComponentCustom.cpp:
(WebCore::toJSNewlyCreated):
* Source/WebCore/css/typedom/CSSKeywordValue.h:
(isType):
* Source/WebCore/css/typedom/CSSNumericValue.h:
(isType):
* Source/WebCore/css/typedom/CSSStyleImageValue.h:
(isType):
* Source/WebCore/css/typedom/CSSStyleValue.h:
(WebCore::isCSSNumericValue):
(WebCore::isCSSMathValue):
(WebCore::isCSSColorValue):
(WebCore::CSSStyleValue::styleValueType const):
(WebCore::CSSStyleValue::getType const): Deleted.
* Source/WebCore/css/typedom/CSSStyleValue.idl:
* Source/WebCore/css/typedom/CSSUnitValue.h:
(isType):
* Source/WebCore/css/typedom/CSSUnparsedValue.h:
(isType):
* Source/WebCore/css/typedom/color/CSSHSL.h:
(isType):
* Source/WebCore/css/typedom/color/CSSHWB.h:
(isType):
* Source/WebCore/css/typedom/color/CSSLCH.h:
(isType):
* Source/WebCore/css/typedom/color/CSSLab.h:
(isType):
* Source/WebCore/css/typedom/color/CSSOKLCH.h:
(isType):
* Source/WebCore/css/typedom/color/CSSOKLab.h:
(isType):
* Source/WebCore/css/typedom/color/CSSOMColor.h:
(isType):
(WebCore::CSSOMColor::create): Deleted.
(WebCore::CSSOMColor::alpha const): Deleted.
(WebCore::CSSOMColor::setAlpha): Deleted.
* Source/WebCore/css/typedom/color/CSSOMColorValue.h:
(isType):
(WebCore::CSSOMColorValue::isCSSHSL const): Deleted.
(WebCore::CSSOMColorValue::isCSSHWB const): Deleted.
(WebCore::CSSOMColorValue::isCSSOKLCH const): Deleted.
(WebCore::CSSOMColorValue::isCSSLCH const): Deleted.
(WebCore::CSSOMColorValue::isCSSLab const): Deleted.
(WebCore::CSSOMColorValue::isCSSOKLab const): Deleted.
(WebCore::CSSOMColorValue::isCSSOMColor const): Deleted.
(WebCore::CSSOMColorValue::isCSSRGB const): Deleted.
* Source/WebCore/css/typedom/color/CSSRGB.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathClamp.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathInvert.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathMax.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathMin.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathNegate.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathProduct.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathSum.h:
(isType):
* Source/WebCore/css/typedom/numeric/CSSMathValue.h:
(WebCore::CSSMathValue::equalsImpl const):
(isType):
* Source/WebCore/css/typedom/transform/CSSMatrixComponent.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSPerspective.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSRotate.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSScale.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSSkew.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSSkewX.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSSkewY.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSTransformComponent.h:
* Source/WebCore/css/typedom/transform/CSSTransformValue.h:
(isType):
* Source/WebCore/css/typedom/transform/CSSTranslate.h:
(isType):

Canonical link: https://commits.webkit.org/301109@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to