See previous intent to prototype thread here:

https://groups.google.com/a/mozilla.org/g/dev-platform/c/n2qHmrAdta4/m/TySv-9DDAAAJ

Soon (as soon as the patch is reviewed), I intend to turn the CSS zoom property on by default on all platform, and turn -moz-transform off.

This has been the current state on nightly for quite a while (3 or four cycles at least).

Standard: https://drafts.csswg.org/css-viewport/#zoom-property (CSSWG)

Other browsers: This is one of the biggest web compat issues we have historically. Both Blink and WebKit support this (except for the new IDL property). Blink has an implementation of the new spec, including the IDL property too (unsure of when it'll ship, hopefully soon).

Aside: Big thanks to the Web Compat team and Simon Pieters for all their help both analyzing the different paths forward here, and mitigating the compat issues, and also to the CSSWG (and Chris Harrelson in particular) for helping getting this standardized and changing existing implementations to be more sensible.

A bit more technical detail on what we're shipping and what we're not shipping follows...

We are shipping the new, agreed upon standard, with the more sensible unzooming behavior for the CSSOM discussed in the CSSWG, with one exception: Zoom changes only affect inherited font-size (and not all other inherited lengths). This matches what other browsers ship. I want to implement the new behavior, but it has other performance / correctness implications, so it might take a little bit more to evaluate impact, and I don't think we should block zoom on that.

In order to ship the zoom property, we need to remove -moz-transform from stylesheets, because sites would do:

 -moz-transform: scale(0.5);
 -moz-transform-origin: 0 0;
 zoom: 0.5;

In order to get "zoom" working on both IE/WebKit/Blink and Firefox.

However, removing -moz-transform whole-sale from script is not possible, because it breaks tons of sites which effectively do:

  if (userAgent is Firefox) use "MozTransform";

See bug 1865332 and duplicates for examples of this, which include some high-profile sites like Google itself (sad).

This setup is... not ideal, and we might tweak this in the future a little bit, see the discussion in bug 1879746, but it seems the current compat fallout from -moz-transform removal is acceptable, and we can let the current state of things ride the trains and experiment on nightly with other improvements that cause less fallout if/as needed.

Let me know if there's any concern with proceeding here.

Thanks a lot,

 -- Emilio

--
You received this message because you are subscribed to the Google Groups 
"[email protected]" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/mozilla.org/d/msgid/dev-platform/49e709f8-62ec-444b-8fd2-10f6e7abae4f%40mozilla.com.

Reply via email to