Right now we are using the new implementation of font-size user setting relying on zoom by default, and the old implementation and its font-size normalisation when this zoom property is not supported i.e.
@supports not (zoom: 1) {
// Deprecated implementation
}
As could be seen in #172, there may be a need to expose this deprecated implementation under a flag instead of just as a fallback guarded by a feature query so that developers can select which implementation they want to use.
Indeed, we built a patch for iPadOS but in some instances, it could have issues with some publications, requiring to temporarily switch to the older implementation of font-size. Currently, this is not possible.
Right now we are using the new implementation of font-size user setting relying on
zoomby default, and the old implementation and its font-size normalisation when thiszoomproperty is not supported i.e.As could be seen in #172, there may be a need to expose this deprecated implementation under a flag instead of just as a fallback guarded by a feature query so that developers can select which implementation they want to use.
Indeed, we built a patch for iPadOS but in some instances, it could have issues with some publications, requiring to temporarily switch to the older implementation of font-size. Currently, this is not possible.