Bug 218384

Summary: Remove -webkit-aspect-ratio support
Product: WebKit Reporter: Rob Buis <rbuis>
Component: CSSAssignee: Rob Buis <rbuis>
Status: RESOLVED FIXED    
Severity: Normal CC: changseok, esprehn+autocc, ews-watchlist, glenn, gyuyoung.kim, joepeck, kondapallykalyan, macpherson, menard, pdr, simon.fraser, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://bugs.webkit.org/show_bug.cgi?id=128629
Attachments:
Description Flags
Patch
none
Patch
none
Patch
none
Patch
ews-feeder: commit-queue-
Patch
none
Patch
none
Patch
none
Patch none

Rob Buis
Reported 2020-10-30 08:41:03 PDT
Remove -webkit-aspect-ratio support since it is superseded by aspect-ratio (https://www.w3.org/TR/css-sizing-4/).
Attachments
Patch (43.41 KB, patch)
2020-10-30 08:43 PDT, Rob Buis
no flags
Patch (123.58 KB, patch)
2020-10-30 12:04 PDT, Rob Buis
no flags
Patch (17.66 KB, patch)
2020-10-31 02:59 PDT, Rob Buis
no flags
Patch (21.81 KB, patch)
2020-10-31 10:43 PDT, Rob Buis
ews-feeder: commit-queue-
Patch (25.51 KB, patch)
2020-10-31 12:04 PDT, Rob Buis
no flags
Patch (26.30 KB, patch)
2020-11-02 01:54 PST, Rob Buis
no flags
Patch (50.01 KB, patch)
2020-11-14 01:38 PST, Rob Buis
no flags
Patch (130.75 KB, patch)
2020-11-14 02:36 PST, Rob Buis
no flags
Rob Buis
Comment 1 2020-10-30 08:43:27 PDT
Rob Buis
Comment 2 2020-10-30 12:04:41 PDT
Simon Fraser (smfr)
Comment 3 2020-10-30 13:05:01 PDT
Comment on attachment 412784 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=412784&action=review > Source/WebCore/rendering/RenderReplaced.cpp:-121 > - float aspectRatio = m_intrinsicSize.aspectRatio(); > - LayoutSize frameSize = size(); > - float frameAspectRatio = frameSize.aspectRatio(); > - if (frameAspectRatio < aspectRatio) > - setHeight(computeReplacedLogicalHeightRespectingMinMaxHeight(frameSize.height() * frameAspectRatio / aspectRatio)); > - else if (frameAspectRatio > aspectRatio) > - setWidth(computeReplacedLogicalWidthRespectingMinMaxWidth(frameSize.width() * aspectRatio / frameAspectRatio, ComputePreferred)); > - } This was added in https://trac.webkit.org/changeset/164265/webkit so removing it is a behavior change, and we suspect that this might be used by (i)Books. I think we'll have to hold off on this change until we can determine that.
Rob Buis
Comment 4 2020-10-30 13:17:01 PDT
(In reply to Simon Fraser (smfr) from comment #3) > Comment on attachment 412784 [details] > Patch > > This was added in https://trac.webkit.org/changeset/164265/webkit so > removing it is a behavior change, and we suspect that this might be used by > (i)Books. I think we'll have to hold off on this change until we can > determine that. Thanks for the heads up! Would it make sense to restrict -webkit-aspect-ratio support to only parse from-intrinsic/from-dimensions and remove auto/specified as a first step?
Simon Fraser (smfr)
Comment 5 2020-10-30 13:29:34 PDT
Yes I think that would be OK.
Rob Buis
Comment 6 2020-10-31 02:59:28 PDT
Rob Buis
Comment 7 2020-10-31 10:43:11 PDT
Rob Buis
Comment 8 2020-10-31 12:04:17 PDT
Rob Buis
Comment 9 2020-11-02 01:54:16 PST
Radar WebKit Bug Importer
Comment 10 2020-11-06 07:42:19 PST
Rob Buis
Comment 11 2020-11-14 01:38:39 PST
Rob Buis
Comment 12 2020-11-14 02:36:01 PST
EWS
Comment 13 2020-11-14 11:46:39 PST
Committed r269820: <https://trac.webkit.org/changeset/269820> All reviewed patches have been landed. Closing bug and clearing flags on attachment 414130 [details].
Note You need to log in before you can comment on or make changes to this bug.