Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 7c0d603d0b2146e443186ac8bab2e1c66d4b31d9
https://github.com/WebKit/WebKit/commit/7c0d603d0b2146e443186ac8bab2e1c66d4b31d9
Author: Sam Weinig <[email protected]>
Date: 2025-10-13 (Mon, 13 Oct 2025)
Changed paths:
M Source/WebCore/Headers.cmake
M
Source/WebCore/SaferCPPExpectations/UncountedLambdaCapturesCheckerExpectations
M Source/WebCore/Sources.txt
M Source/WebCore/WebCore.xcodeproj/project.pbxproj
M Source/WebCore/css/CSSPrimitiveValue.cpp
A Source/WebCore/css/calc/CSSCalcExecutor.h
A Source/WebCore/css/calc/CSSCalcOperator.cpp
A Source/WebCore/css/calc/CSSCalcOperator.h
M Source/WebCore/css/calc/CSSCalcTree+Evaluation.cpp
M Source/WebCore/css/calc/CSSCalcTree+Evaluation.h
M Source/WebCore/css/calc/CSSCalcTree+Parser.cpp
M Source/WebCore/css/calc/CSSCalcTree+Parser.h
M Source/WebCore/css/calc/CSSCalcTree+Simplification.cpp
M Source/WebCore/css/calc/CSSCalcTree+Simplification.h
M Source/WebCore/css/calc/CSSCalcTree+StyleCalculationValue.cpp
M Source/WebCore/css/calc/CSSCalcType.cpp
M Source/WebCore/css/calc/CSSCalcType.h
M Source/WebCore/css/calc/CSSCalcValue.cpp
M Source/WebCore/css/calc/CSSCalcValue.h
M Source/WebCore/css/query/ContainerQueryFeatures.cpp
M Source/WebCore/css/query/ContainerQueryFeatures.h
M Source/WebCore/css/query/MediaQueryFeatures.cpp
M Source/WebCore/css/query/MediaQueryFeatures.h
M Source/WebCore/css/typedom/CSSNumericValue.cpp
M Source/WebCore/css/typedom/CSSUnitValue.cpp
A Source/WebCore/css/values/primitives/CSSPrimitiveNumericCategory.cpp
A Source/WebCore/css/values/primitives/CSSPrimitiveNumericCategory.h
M Source/WebCore/css/values/primitives/CSSPrimitiveNumericConcepts.h
M Source/WebCore/css/values/primitives/CSSPrimitiveNumericUnits.h
M Source/WebCore/css/values/primitives/CSSUnevaluatedCalc.cpp
M Source/WebCore/css/values/primitives/CSSUnevaluatedCalc.h
R Source/WebCore/style/calc/StyleCalculationCategory.cpp
R Source/WebCore/style/calc/StyleCalculationCategory.h
R Source/WebCore/style/calc/StyleCalculationExecutor.h
R Source/WebCore/style/calc/StyleCalculationOperator.cpp
R Source/WebCore/style/calc/StyleCalculationOperator.h
R Source/WebCore/style/calc/StyleCalculationRange.h
M Source/WebCore/style/calc/StyleCalculationTree+Copy.cpp
M Source/WebCore/style/calc/StyleCalculationTree+Evaluation.cpp
M Source/WebCore/style/calc/StyleCalculationTree.cpp
M Source/WebCore/style/calc/StyleCalculationTree.h
M Source/WebCore/style/calc/StyleCalculationValue.cpp
M Source/WebCore/style/calc/StyleCalculationValue.h
M Source/WebCore/style/values/fonts/StyleFontVariationSettings.h
M Source/WebCore/style/values/primitives/StylePosition.cpp
M
Source/WebCore/style/values/primitives/StylePrimitiveNumericTypes+Conversions.h
M Source/WebCore/style/values/primitives/StyleUnevaluatedCalculation.cpp
M Source/WebCore/style/values/primitives/StyleUnevaluatedCalculation.h
Log Message:
-----------
[Style] Reorganize some style/calc types to live under css/
https://bugs.webkit.org/show_bug.cgi?id=300637
Reviewed by Tim Nguyen.
Now that we are not bound by the platform layering border, we can reorganize
some of
the style/calc types that make more sense under css.
Style::Calculation::Category -> CSS::Category
Style::Calculation::Executor -> CSSCalc::Executor
Style::Calculation::Operator -> CSSCalc::Operator
Style::Calculation::Range (removed - we can now use CSS::Range everywhere)
Style::Calculation::None (removed - we can now use CSS::Keyword::None
everywhere)
* Source/WebCore/Headers.cmake:
* Source/WebCore/Sources.txt:
* Source/WebCore/WebCore.xcodeproj/project.pbxproj:
* Source/WebCore/css/CSSPrimitiveValue.cpp:
* Source/WebCore/css/calc/CSSCalcExecutor.h: Renamed from
Source/WebCore/style/calc/StyleCalculationExecutor.h.
* Source/WebCore/css/calc/CSSCalcOperator.cpp: Renamed from
Source/WebCore/style/calc/StyleCalculationOperator.cpp.
* Source/WebCore/css/calc/CSSCalcOperator.h: Renamed from
Source/WebCore/style/calc/StyleCalculationOperator.h.
* Source/WebCore/css/calc/CSSCalcTree+Evaluation.cpp:
* Source/WebCore/css/calc/CSSCalcTree+Evaluation.h:
* Source/WebCore/css/calc/CSSCalcTree+Parser.cpp:
* Source/WebCore/css/calc/CSSCalcTree+Parser.h:
* Source/WebCore/css/calc/CSSCalcTree+Simplification.cpp:
* Source/WebCore/css/calc/CSSCalcTree+Simplification.h:
* Source/WebCore/css/calc/CSSCalcTree+StyleCalculationValue.cpp:
* Source/WebCore/css/calc/CSSCalcType.cpp:
* Source/WebCore/css/calc/CSSCalcType.h:
* Source/WebCore/css/calc/CSSCalcValue.cpp:
* Source/WebCore/css/calc/CSSCalcValue.h:
* Source/WebCore/css/query/ContainerQueryFeatures.cpp:
* Source/WebCore/css/query/ContainerQueryFeatures.h:
* Source/WebCore/css/query/MediaQueryFeatures.cpp:
* Source/WebCore/css/query/MediaQueryFeatures.h:
* Source/WebCore/css/typedom/CSSNumericValue.cpp:
* Source/WebCore/css/typedom/CSSUnitValue.cpp:
* Source/WebCore/css/values/primitives/CSSPrimitiveNumericCategory.cpp: Renamed
from Source/WebCore/style/calc/StyleCalculationCategory.cpp.
* Source/WebCore/css/values/primitives/CSSPrimitiveNumericCategory.h: Renamed
from Source/WebCore/style/calc/StyleCalculationCategory.h.
* Source/WebCore/css/values/primitives/CSSPrimitiveNumericConcepts.h:
* Source/WebCore/css/values/primitives/CSSPrimitiveNumericUnits.h:
* Source/WebCore/css/values/primitives/CSSUnevaluatedCalc.cpp:
* Source/WebCore/css/values/primitives/CSSUnevaluatedCalc.h:
* Source/WebCore/style/calc/StyleCalculationRange.h: Removed.
* Source/WebCore/style/calc/StyleCalculationTree+Copy.cpp:
* Source/WebCore/style/calc/StyleCalculationTree+Evaluation.cpp:
* Source/WebCore/style/calc/StyleCalculationTree.cpp:
* Source/WebCore/style/calc/StyleCalculationTree.h:
* Source/WebCore/style/calc/StyleCalculationValue.cpp:
* Source/WebCore/style/calc/StyleCalculationValue.h:
* Source/WebCore/style/values/fonts/StyleFontVariationSettings.h:
* Source/WebCore/style/values/primitives/StylePosition.cpp:
*
Source/WebCore/style/values/primitives/StylePrimitiveNumericTypes+Conversions.h:
* Source/WebCore/style/values/primitives/StyleUnevaluatedCalculation.cpp:
* Source/WebCore/style/values/primitives/StyleUnevaluatedCalculation.h:
Canonical link: https://commits.webkit.org/301455@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