Add non-animated support for the CSS scale property
<rdar://problem/69926254>
Created attachment 410460 [details] Patch
This patch modifies the imported WPT tests. Please ensure that any changes on the tests (not coming from a WPT import) are exported to WPT. Please see https://trac.webkit.org/wiki/WPTExportProcess
Created attachment 410475 [details] Patch
Comment on attachment 410475 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=410475&action=review > Source/WebCore/css/CSSComputedStyleDeclaration.cpp:643 > + if (!rendererCanBeTransformed(renderer) || is<RenderInline>(*renderer) || !scale) Doesn't rendererCanBeTransformed() check is<RenderInline>? > Source/WebCore/css/CSSProperties.json:6497 > + "url": "https://drafts.csswg.org/css-transforms-2/#propdef-translate" Wrong url. > Source/WebCore/rendering/style/StyleRareNonInheritedData.h:182 > + RefPtr<ScaleTransformOperation> scale; StyleRareNonInheritedData is growing...
Created attachment 410506 [details] Patch
Created attachment 410507 [details] Patch
ChangeLog entry in LayoutTests/ChangeLog contains OOPS!.
Committed r267958: <https://trac.webkit.org/changeset/267958>