RESOLVED FIXED Bug 186965
transform-origin should not accept 4 lengths
https://bugs.webkit.org/show_bug.cgi?id=186965
Summary transform-origin should not accept 4 lengths
Eric Willigers
Reported 2018-06-23 03:21:42 PDT
transform-origin accepts 1, 2, or 3 values. https://drafts.csswg.org/css-transforms/#propdef-transform-origin Unfortunately, WebKit allows '1px 2px 3px 4x' and silently discards the last length. Example: http://jsfiddle.net/ericwilligers/me38g7ax/ Found while preparing Web Platform Test https://github.com/web-platform-tests/wpt/pull/11633
Attachments
Patch (3.63 KB, patch)
2021-09-13 08:18 PDT, Joonghun Park
no flags
Move range.atEnd() into consumeTransformOrigin() (3.71 KB, patch)
2021-09-13 08:58 PDT, Joonghun Park
no flags
Joonghun Park
Comment 1 2021-09-13 08:18:17 PDT
Simon Fraser (smfr)
Comment 2 2021-09-13 08:35:06 PDT
Comment on attachment 438040 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=438040&action=review > Source/WebCore/css/parser/CSSPropertyParser.cpp:6139 > + return consumeTransformOrigin(important) && m_range.atEnd(); I think the range.atEnd() check should move inside consumeTransformOrigin().
Joonghun Park
Comment 3 2021-09-13 08:40:45 PDT
(In reply to Simon Fraser (smfr) from comment #2) > Comment on attachment 438040 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=438040&action=review > > > Source/WebCore/css/parser/CSSPropertyParser.cpp:6139 > > + return consumeTransformOrigin(important) && m_range.atEnd(); > > I think the range.atEnd() check should move inside consumeTransformOrigin(). Ok, I will move the range.atEnd() into consumeTransformOrigin().
Joonghun Park
Comment 4 2021-09-13 08:58:46 PDT
Created attachment 438045 [details] Move range.atEnd() into consumeTransformOrigin()
EWS
Comment 5 2021-09-13 14:33:05 PDT
Committed r282359 (241622@main): <https://commits.webkit.org/241622@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 438045 [details].
Radar WebKit Bug Importer
Comment 6 2021-09-13 14:34:21 PDT
Note You need to log in before you can comment on or make changes to this bug.