NEW 196327
@supports(background-attachment:fixed) should say false on iOS
https://bugs.webkit.org/show_bug.cgi?id=196327
Summary @supports(background-attachment:fixed) should say false on iOS
Simon Fraser (smfr)
Reported 2019-03-27 16:51:23 PDT
We don't support background-attachment:fixed on iOS, so @supports should reflect this.
Attachments
Radar WebKit Bug Importer
Comment 1 2022-06-13 10:14:26 PDT
Sam Sneddon [:gsnedders]
Comment 2 2022-06-13 10:22:53 PDT
Is this primarily just the fact that we should be gating support on FixedBackgroundsPaintRelativeToDocument?
Sam Sneddon [:gsnedders]
Comment 3 2022-06-13 10:29:51 PDT
Hmm, we also seem to set FixedElementsLayoutRelativeToFrame on !IOS_FAMILY
Simon Fraser (smfr)
Comment 4 2022-06-13 10:56:45 PDT
`FixedBackgroundsPaintRelativeToDocument` is historical artifact from iOS originally not supporting `position:fixed` at all. `We don't support background-attachment:fixed` is not supported on iOS because we didn't want scrolling to trigger a paint on every frame (and we'd still prefer to avoid it). We also can't paint fixed backgrounds synchronously such that they accurately align with the scroll position, so even if we allow them to paint, they will jiggle.
Sam Sneddon [:gsnedders]
Comment 5 2022-06-13 15:25:16 PDT
So the conclusion having spoken to Simon offline is that yes, all that needs to be done is to gate the support (at the parser level, as we do for other conditional values) on FixedBackgroundsPaintRelativeToDocument.
Tim Nguyen (:ntim)
Comment 6 2023-08-30 18:05:06 PDT
https://searchfox.org/wubkat/rev/015533966bd738b8d2392a8ff5f6c92f63ba1085/Source/WebCore/css/CSSProperties.json#1601 Needs to change to: ``` { "value": "fixed", "settings-flag": "fixedBackgroundsPaintRelativeToDocument" } ```
Tim Nguyen (:ntim)
Comment 7 2023-08-30 18:06:18 PDT
(In reply to Tim Nguyen (:ntim) from comment #6) > https://searchfox.org/wubkat/rev/015533966bd738b8d2392a8ff5f6c92f63ba1085/ > Source/WebCore/css/CSSProperties.json#1601 > > Needs to change to: > ``` > { > "value": "fixed", > "settings-flag": "fixedBackgroundsPaintRelativeToDocument" > } > ``` Actually, that settings flag needs to be flipped to work. Alternatively, we would need a custom parser function
zak ridouh
Comment 8 2024-06-26 18:46:59 PDT
Note You need to log in before you can comment on or make changes to this bug.