Open Bug 390936 (csszoom) Opened 17 years ago Updated 4 days ago

Implement Internet Explorer zoom property for css

Categories

(Core :: CSS Parsing and Computation, enhancement)

enhancement

Tracking

()

REOPENED
Webcompat Priority P1

People

(Reporter: martijn.martijn, Assigned: emilio)

References

(Depends on 3 open bugs, Blocks 3 open bugs, )

Details

(5 keywords, Whiteboard: [needs-wpt-?])

User Story

Would be good for GeckoView.

Attachments

(1 file)

(I couldn't find an earlier bug about this, which surprises me)

IE allows the css zoom property for content authors to allow magnifying various elements of choice in a page.
Maybe Mozilla should try to implement something like this, too?
Based on what I know about this so far, I'm pretty strongly against it.

What are the use cases?
(And when part of a page is zoomed, is layout changed, or does content disappear?)
(In reply to comment #2)
> (And when part of a page is zoomed, is layout changed, or does content
> disappear?)

The layout is changed.
I don't really know of any use cases (other than it seems like a cool thing to be able to do).

Here's a use case: http://surfmind.com/lab/ie.html

At <http://www.beltzner.ca/mike/archives/2007/08/04/do_you_like_the_pretty.html>, "Andyed" claims it would be the only feature that makes him develop IE only apps. I didn't find a way to contact him.

I remember having used zoom once, but I can't figure out at which site. (I use it a lot to trigger hasLayout, but there was a real use case, too ...)
I guess it was something like this, i.e. an image or button enlarging on hover: <http://design-noir.de/Bilder/Urlaub/04_Abifahrt/Antibes/> (two occurrences: 1, the thumbnails. 2, the small images that appear if you move the mouse to the top of the page). Obviously, those work without 'zoom', since the absolute dimensions are known in the stylesheet and images can be zoomed with width/height.
Fwiw, I think that the stuff at http://surfmind.com/lab/ie.html could be done with svg:foreignObject, but it wouldn't be as easy as a css zoom property, off course.
(In reply to comment #5)
> Fwiw, I think that the stuff at http://surfmind.com/lab/ie.html could be done
> with svg:foreignObject, but it wouldn't be as easy as a css zoom property, off
> course.

That's correct. On the upside, SVG would be semantically more correct, since the scaling is an integral part of the content, not a styling detail.

(In reply to comment #4)
> I remember having used zoom once, but I can't figure out at which site. (I use
> it a lot to trigger hasLayout, but there was a real use case, too ...)

Found one: http://www.menschen-finsteren-zeiten.org/4
'zoom' is used there to scale embedded images with the content.

#sub .lang-disabled {
	width: 20% !important;
	font-size: .53em !important;
	overflow: hidden;
}
#sub .lang-disabled > img {
	max-width: 40%;
}

and for IE 6 resp. 7:

#sub .lang-disabled img {
	max-width: 100%;
	zoom: 20%;
}
OS: Windows XP → All
Hardware: PC → All
Whiteboard: parity-IE
I think many font-size use cases are really zoom use cases.

I hit one such use case in real life yesterday.  I wanted to animate some text.  The effect I wanted was "simultaneously fade in and shrink from huge to the correct size".  It's a zoom use case.  I ended up doing it by continually adjusting the font-size.  This caused lines to be reflowed as the animation progressed, which looked really ridiculous.

I tried solving this by simultaneously animating the width.  That works, *mostly*.  Enough rounding happens in layout that a word sometimes gets bumped from one line to another. (Ultimately I decided to use single words; of course one's content isn't always this flexible!)

Martijn says the layout *is* changed when you zoom; but I think that's only because the (effective-for-layout) width of the thing being zoomed changes (if you zoom in, layout sees its width decrease).  But--without getting too far into things I don't understand--I think you can arrange for that *not* to happen.  Correct me if I'm wrong, of course...
There is now the -moz-transform: scale way of doing zooming with css. It's not like IE does the css zoom, but it is quite similar.
I have a non-web use case: I have a set of presentation slides scaled for 1024x768 projectors. Then I get asked to give the talk at a school or club where the projector only handles 800x600. Full-page zoom from the firefox UI doesn't work, because it resets on every slide.

-moz-transform: scale() works nicely, but it's a shame to have to maintain a special rule for firefox when CSS zoom: works in webkit and IE.
zoom and scale work differently:
with zoom, the area allocated decreases by the zoom value,
with scale, the area allocated does not change.

This causes differences if you have a absolute positioned object to the right inside a zoomed object:
with zoom, the object stays in the right corner
with scale, the object moves left according to its transform origin.
That's a good point henry.

Besides, W3C says that's a standard property for the CSS transitions (http://www.w3.org/TR/css3-transitions/). I think Mozilla should allow that.
As a use case, I'm working on an ad-blocker add-on which offers various levels of ad blocking. One level just reduces the screen real estate allotted to some ads. I tried using "zoom", and then discovered that Firefox is the only major browser that doesn't implement it.  

transform: scale(n), as mentioned above, is different; it doesn't affect the amount of real estate consumed. 

As an animateable property for transitions, it could be quite useful for pop-up boxes and things which expand when moused over.
Here is another use case: We developed an internal system in which many reports are displayed. Most of these reports are to be printed in either single or double-size pages. The system is capable of splitting the reports automatically in several pages and display the pages on the screen. I added zoom-in and zoom-out buttons (like in a PDF viewer application) to visualize the whole pages. It works as expected in Chrome and Opera. Unfortunately I can not use that feature in FF.
Hi, I'd like to point out our use case.

We've developed a new website dev tool, it's called Syndu, and can be viewed in www.syndu.com.
It takes an entirely different approach to developing websites than what's out there right now.
It's an html5 product, and relies heavily on jquery, css, etc.

The paradigm we use for the website is a desktop. There's no scrolling below the fold, content is shown inside content windows which can be moved around and scaled according to user, and/or viewers desire.

When users with netbooks (10",11" screens) browse the site, the "website desktop" is too large. We detect the screen size with javascript and apply the css zoom attribute on the entire document.
It works perfectly in Chrome, Opera, Safari, and IE. Firefox doesn't support it.

We tried running a css scale transform, but there are still problems with it and the dynamic windows elements. Dragging and resizing fail to render properly (this is happening across all browsers, and we consider it a maturity issue of the css-transforms).

Thanks.
I agree with Natti Baron as well. I wanted to use this feature for some work at Netflix as I am a senior UI engineer there. On netbooks, it would have been ideal to be able to scale the site when certain media queries kicked in or when the resolution was below a certain threshold. 

The big problems with using transform: scale() is that the overall size of the component being scaled isn't adjusted in the DOM. So if you have an element that is 320px by 240px and you scale it to 50%, the element looks to be 160px by 120px but the white space surrounding it isn't decreased and the DOM still reports the element to be 320px by 240px. 

In all other major browsers, using zoom, this works as expected. It would be nice to know that Mozilla wasn't the only browser out but it seems to be that way.
This is extremely important to me. My company is currently working with a heavily modified Seadragon Ajax technology, together with expanding it with a lot of OCR-like functionality. We need this OCR content to correctly change position and zoom to fit its Seadragon counterpart. In all major browsers apart from Firefox this is a simple question of setting top, left and zoom parameters. Firefox requires workarounds to achieve the same effect.

Any chance it will get implemented within a few months?...
Yeah this would be a great help, or at least getting CSS3 transform to work properly with child elements. So far it does not scale when flash is a child object, and buttons etc. when placed dynamically into the dom scale all funky, too. I've found no solution so far that works in FF. Got it in IE and Chrome. =(
My use case:

I built a site from scratch, and everything looks great... except everything looks just a little too BIG, from a design standpoint.  I'm not a sophisticated developer or designer, so going back and scaling everything down would be a ridiculous chore, because it would require me to trace back through hack-land.

The "zoom" property is a hack solution.  I put it in the wrapper in my CSS, and it works beautifully on chrome and IE!  Looks like hell on Firefox though.

Would be absolutely wonderful for us to have this implemented soon!
I used to advocate for this but I've changed my mind. CSS3 transform: scale() is much better and supported in all modern browsers.
(In reply to Michał Z. Gołębiowski from comment #21)
> I used to advocate for this but I've changed my mind. CSS3 transform:
> scale() is much better and supported in all modern browsers.

Perhaps for your use-case, scale() is all you need. But note that the zoom property works differently from scale(), so there are reasons for Firefox to implement a separate zoom property. Comments #11, #14, and #17 here explain the difference between zoom: and scale(). In short, scale() changes the element only visually, while zoom: also changes the element “physically” in the layout.
transform: scale() doesn't have the ability to "zoom" in or out of the entire web page.  I built a site that I'd like to always look just a bit smaller; zoom really helps me out for that; transform: scale() does not.
So it works in IE6-9, Chrome, Safari, Opera and now I have to write another special case for FF? Does not seems right. I'm perfectly happy with how zooming works and the site is just broken in FF. Scale just broke everything there's like 100's dynamically placed divs in a tight area with tons of css-- scale breaks it all zoom works like a charm.
Please add support for the zoom attribute. With Opera moving to WebKit within a few months, they will restore support for it in a few months, and Firefox will be the only major browser left.

As spoken above, the following is a scenario by which support for this attribute would be helpful:

A developer builds a web site on a computer. This computer may have a width of 600px, 1280px, 2560px... whatever width. The developer would like to optimize this for any screen width, so that the content can be displayed at a default setting that will scale exactly the same way.

As others have said here, using the scale attribute followed by the .style['MozTransformOrigin'] attribute, doesn't do the same thing the zoom property is designed for.
One other thing:

Here is a 1-line JS sample by which I could implement this property:

document.body.style.zoom = screen.width/1280;

1280 could be replaced with whatever screen resolution the web site was originally built for. With this, all you'd have to worry about is how it looks for your current screen resolution, without having to worry about the others.
Adding one more vote to this. PLEASE. Firefox is the only major browser that doesn't support this. transform(scale) doesn't recalculate the bounds of an object, while zoom allows objects to reflow.

See this fiddle http://jsfiddle.net/sarahwhatsup/YDwds/18/

If nothing else, it feels extremely broken to have something work consistently in Internet Explorer, Chrome, Safari and *not* Firefox.
With Opera Next 15 out, I have tested the zoom property on there, and it now works again with their switch to the Blink engine. This makes Firefox the only major browser left.

The zoom property is in the CSS Device Adaptation spec, both in the current Editor's Draft and in the latest Working Draft from 2011. http://dev.w3.org/csswg/css-device-adapt/
(In reply to rkh2005 from comment #28)
> The zoom property is in the CSS Device Adaptation spec, both in the current
> Editor's Draft and in the latest Working Draft from 2011.
> http://dev.w3.org/csswg/css-device-adapt/

The spec you linked to is about the viewport zoom switch, not CSS zoom. Completely unrelated.
Use case: WYSIWYG rich text editor zoom tool, similar to MS Word, LibreOffice etc.
One more vote for this (Now i have to rework a whole website just because this is not supported).
I wanted to use this css to make the whole page bigger in certain situation (zoom property would have been ideal), but I can't because FireFox does not support it. There are no simple alternatives to this (at all). The only alternative I see to using zoom would be to write an overload for the css which makes everything bigger, but I can't do that either as the site that I'm developing uses a 3rd party theme that has all text sizes set in px. Making this overload style sheet would be ridiculously time consuming.
For what it's worth: +1

Same problem here. Can't dynamically zoom using CSS transitions with the FF spezific workaround.
Only 19 votes so far, still one of the most usefull functtion for mobile Dev.
Please add it.
I'm also really surprised that this isn't supported in Firefox. Huge showstopper for mobile responsive development, going to have to refactor quite a bit. Yes, transform is not an equivalent solution, either.
Having messed a bit around making mobile apps in html, I found the zoom property to be extremely useful for adjusting the size of the content depending on resolution etc. Additionally development of those apps can be partially done with help of desktop browsers, but unfortunately only chrome appears to support this css decently.
Microsoft wrote a brief (and incomplete) spec describing how 'zoom' works:
http://cdn.rawgit.com/atanassov/css-zoom/master/Overview.html
and brought it up in order to propose that all browsers agree to remove it (because it has crazy behavior that doesn't make sense).

zoom:1 is used frequently because:
 (a) it triggers hasLayout in old IE
 (b) it prevents pinch zooming on Android

The way non-1 values of zoom work is not explained clearly in Microsoft's draft.  What really happens is that:
 (1) the 'zoom' values accumulate multiplicatively from ancestors to descendants
 (2) all computed CSS <length> values are multiplied by that (but not percentages)

It seems like new IE will switch to the WebKit/Blink behavior, which means no longer applying anything to <percentage> values (not sure what they did there in the past), and not accumulating to inside iframes anymore.
... in today's CSS working group meeting.
My opinion: My intention is to zoom for "highlighting" active elements in a grid (table?).

I'd expect absolutely/relatively positioned elements to zoom from the center and leave all other elements unchanged, covering their content (depending on z-index property).
(In reply to Axel from comment #39)
> My opinion: My intention is to zoom for "highlighting" active elements in a
> grid (table?).
> 
> I'd expect absolutely/relatively positioned elements to zoom from the center
> and leave all other elements unchanged, covering their content (depending on
> z-index property).

|transform: scale(...)| should work for this use case.
Yes, you are right. But the problem with the transform property is that you cannot set different transition timing properties for each of the transform functions to create animations beyond simple ones.
(In reply to Axel from comment #41)
> Yes, you are right. But the problem with the transform property is that you
> cannot set different transition timing properties for each of the transform
> functions to create animations beyond simple ones.

Wouldn't `zoom` have this same problem? It's not like `zoom` provides extra capability for animation compared to `transform: scale()`.

If CSS’s built-in animation timing functions aren't enough for you, that means you have to use JavaScript to animate them. That should work the same whatever property you use – you are just setting the `style` attribute of the element to a string, and changing a number within the string with each update.
The problem with transform in general is that you can only have a single timing parameter set for transform. You can't, for example, have an element zoom in and then flip it around. (I know that's a stupid example but it pinpoints the issue rather well.)

The approach of how to achieve the desired transformation doesn't change the core problem.
Some members of the CSS Working Group want to introduce separate translate, scale and rotate properties which are independently animatable and combine in a particular order.  That would allow simultaneous zooming and flipping.  I don't think that translate/scale/rotate properties is the best solution here -- it doesn't seem general enough to me -- but it indicates that at least some people in the WG feel that allowing independent transforms to be specified and combined on an element is a use case worth solving.
Discussion in the CSS WG in May 2015
https://lists.w3.org/Archives/Public/www-style/2015May/thread.html#msg282

The resolution was   RESOLVED: Kill CSS Zoom with fire
:/ Still necessary for Web Compat reasons.
Ah no.
 RESOLVED: Kill CSS Zoom with fire
  RESOLVED: Rescind previous resolution
  <fantasai> plinss, basically, we don't have a resolution to "kill"
             anything unless we have a resolution to remove it from
             future releases of a browser. And we don't have that,
             because smfr is not convinced.

in https://lists.w3.org/Archives/Public/www-style/2015May/0282.html
Another dependency on zoom.
https://webcompat.com/issues/2103
Another site failing in multiple ways because of CSS zoom.
Alias: csszoom
Whiteboard: parity-IE → parity-IE [webcompat]
Another Japanese Web site relying on CSS zoom.
https://webcompat.com/issues/3789
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WORKSFORME
not implemented yet.
Status: RESOLVED → REOPENED
Resolution: WORKSFORME → ---
Whiteboard: parity-IE [webcompat] → [parity-IE][parity-Chrome][parity-Edge][webcompat]
Is there any update on this one?

I'm mostly interesting in `zoom: reset`, since I cannot find any equivalent implemented by Firefox (glad to be wrong!).

In devtools we need to display hud elements (e.g. infobars when we inspect element) that are not affected by the page's zoom. Currently, we applying a transformation with a `scale(1 / zoom)`, but it's not the same, we have several little visual glitches on high values of zoom or lower.

I'm looking for a good alternative, so far I found only `zoom: reset`.
Flags: webcompat?
Whiteboard: [parity-IE][parity-Chrome][parity-Edge][webcompat] → [parity-ie][parity-blink][parity-webkit][parity-edge][webcompat]
Just chiming in to say that I'm glad firefox has held out on implementing 'zoom' and hope they always hold out. This property seems to make zero sense, if you build your applications in scalable/responsive ways, correctly using em/rem/% like values and the transform property, you should never need or even want to use zoom.
Disagree entirely Jonjohnjohnson. The fundamental way that transform works is different, especially in regards to reflowing elements. Firefox remains the *only* browser that doesn’t support it. I’m glad transform works for you but it doesn’t work nearly as well as zoom for quite a few UI/UX behaviors
Mass bug change to replace various 'parity' whiteboard flags with the new canonical keywords. (See bug 1443764 comment 13.)
Whiteboard: [parity-ie][parity-blink][parity-webkit][parity-edge][webcompat] → [webcompat]
Yes, zoom is not the same as transform. Zoom is for example superuseful for retina images where you just specify zoom: 50%. Firefox is as said before the only browser not supporting this. Would be really greatful for zoom to be implemented!
It seems like this isn't going away -> [webcompat:p3]
Flags: webcompat? → webcompat+
Whiteboard: [webcompat] → [webcompat:p3]
User Story: (updated)
Whiteboard: [webcompat:p3] → [webcompat:p2]
Blocks: 1081494
This would also be tremendously useful for our DevTools highlighter... canvas based highlighters get zoomed with the page so we need to divide by the zoom value in multiple locations, complicating our code.
2 use cases. Previewing scaled down versions of authored content and adjusting content to better fit the display size for big screen displays.

For the last of two use cases we just don't support Firefox as it's simply too bug prone doing it using scale.

This may not be standard, but it is a de facto standard

See bug 1547409. Migrating webcompat priority whiteboard tags to project flags.

Webcompat Priority: --- → P2

Note that this is not even so trivial, since some pages like the one in https://webcompat.com/issues/31557 (which right now work on release) use something like zoom and -moz-transform in the same rule.

Indeed, we might even have to detect if a site is using zoom, and disable moz-transform and other moz-specific hacks to some degree to achieve compat (assuming we cannot just remove moz-transform due to unrelated compat issues).

For testing reference, the few web platform tests I see using CSS zoom all seem to pass in Firefox, so further tests would appear to be needed. Thankfully I do see a fair number Blink web tests, as well as Blink and WebKit LayoutTests.

Whiteboard: [webcompat:p2] → [webcompat:p2][needs-wpt-?]
See Also: → 1582374
Depends on: 1589766

A very good reason in my opinion is that it makes the implementation of some accessibility components a breeze.

As seen here (using Chrome or I.E 10+):
lviamerica.com

And discussed here:
https://css-tricks.com/forums/topic/emulating-browser-zoom-with-css-for-accessibility/

Attached file GitHub Pull Request

Basic Test on Web Platform Tests for CSS Zoom

Assignee: nobody → kdubost
Assignee: kdubost → nobody

See the recent discussions about it

astearns: PROPOSED RESOLUTION: avoid specifying zoom as it stands, but we will if we have to, and a new proposal about a better zoom property would be a good use of time
https://github.com/w3c/csswg-drafts/issues/5623#issuecomment-712455201

And I filed https://bugs.chromium.org/p/chromium/issues/detail?id=1142663

Note that as-is the resolution doesn't resolve our webcompat issue. It leaves us at the same place. Except if Blink team is willing to move forward with https://bugs.chromium.org/p/chromium/issues/detail?id=1142663

Blocks: 1690281
Blocks: 1544649
Webcompat Priority: P2 → P1
Whiteboard: [webcompat:p2][needs-wpt-?] → [needs-wpt-?]

Hi,

I am only here to point out another user of 'document.body.style.zoom'. This website uses zoom to make text larger. Disregard the obvious bug within the work around of quoting '-moz-transform'. I will report that bug to the website.

  1. Navigate to https://medicare.highmark.com/view-plans?planType=Medicare%20Advantage
  2. Enter any zip code. I used 15106
  3. Click on the Text Resize Icon

Within zoomMe within https://medicare.highmark.com/etc.clientlibs/sxeaem/clientlibs/clientlib-base.min.js,

function zoomMe(zoomFactor) {
if (typeof zoomFactor === 'string' && zoomFactor.includes('%')) {
zoomFactor.replace('%', '');
zoomFactor = zoomFactor / 100;
}
document.body.style.zoom = zoomFactor
if (navigator.userAgent.includes('Firefox/')) {
document.body.style[-moz-transform] = 'scale(' + zoomFactor + ')';
}
}

Should I report to webcompat?

Hi Monkey,

(In reply to monkeyboyted from comment #75)

if (navigator.userAgent.includes('Firefox/')) {
    document.body.style[-moz-transform] = 'scale(' + zoomFactor + ')';
}

}

The bug is an easy fix and it is a site mistake. You did a correct analysis.
They probably do not need to use at all zoom. and probably could just use transform, which is supported by all browsers. You should contact them and you can tell me if you have been successful.

Should I report to webcompat?

You could on https://webcompat.com/issues/new
but you already did the job of diagnosing and maybe contacting. :) Thanks for this!

Flags: needinfo?(monkeyboyted)

"Bug 390936 (csszoom) Opened 15 years ago. Updated 3 minutes ago".

This is an achievement of some sort. I'll comment again at the 20 year mark.

(In reply to Karl Dubost💡 :karlcow from comment #77)

Hi Monkey,

(In reply to monkeyboyted from comment #75)

if (navigator.userAgent.includes('Firefox/')) {
    document.body.style[-moz-transform] = 'scale(' + zoomFactor + ')';
}

}

The bug is an easy fix and it is a site mistake. You did a correct analysis.
They probably do not need to use at all zoom. and probably could just use transform, which is supported by all browsers. You should contact them and you can tell me if you have been successful.

Should I report to webcompat?

You could on https://webcompat.com/issues/new
but you already did the job of diagnosing and maybe contacting. :) Thanks for this!

Highmark released a fix but they left the browser specific check. Yes, the organization uses transform property

function zoomMe(zoomFactor) {

if (typeof zoomFactor === 'string' && zoomFactor.includes('%')) {
    zoomFactor.replace('%', '');
    zoomFactor = zoomFactor / 100;
}

document.body.style.zoom = zoomFactor

if (navigator.userAgent.includes('Firefox/')) {
    document.body.style['transform'] = 'scale(' + zoomFactor + ')';
}

}

Flags: needinfo?(monkeyboyted)

I hope to Firefox Implement Internet Explorer zoom property for css to 15 years ago.

This is an achievement of some sort. I'll comment again up to 16-30 year mark.

Credit to describe browser compatibility - https://developer.mozilla.org/en-US/docs/Web/CSS/zoom

To all those who say "transform" should be used: it's not the same behavior and therefore doesn't work in many scenarios. For me, the difference was that "zoom" multiplies, then rounds various sizes (like borders), whereas "transform" rounds then multiplies, which makes it impossible to have a border width of 0.3px and zoomed in 10x to make it similar to border width of 3px, for example. OK leaving aside the standard, why not just copy the implementation as it's done in WebKit as a stopgap measure?

Because the WebKit implementation is bogus, and reverse-engineering it without a clear spec is not going to create anything sane out of it. Also, because implementing this property will cause pages that right now work in Firefox (via -moz-transform, etc) to stop working, zoom doubly, etc.

For many of the use cases that zoom has if not all, you can use calc() and e.g. custom properties even though it might be a bit more effort.

Hi,
I am joining the discussion because I just discovered that the css property zoom is not supported by Firefox.

I developed a game on BGA in which one you could click a zoom button to open you player board in a larger dialog.
The player board is made up of many elements with relative and complexe positioning, this is why I choose to use the zoom property.

Please, let me show it on Chrome
https://imgur.com/a/J72tLMm

Zoom property is compatible with responsiveness.
(even if here it clearly needs a little fix on my side)
https://imgur.com/a/JuqdQdX

So on Firefox, the dialog is not zooming at all
https://imgur.com/a/L2zfXOA

Using -moz-transform is not completing doing the job
https://imgur.com/a/SifehrT

I hope I could use a wrapper element to force width with same aspect ratio but I am pretty I will have trouble to get it responsive.
The use case is not the same and I think this should be a standard.

(In reply to Emilio Cobos Álvarez (:emilio) from comment #82)

Because the WebKit implementation is bogus, and reverse-engineering it without a clear spec is not going to create anything sane out of it. Also, because implementing this property will cause pages that right now work in Firefox (via -moz-transform, etc) to stop working, zoom doubly, etc.

For many of the use cases that zoom has if not all, you can use calc() and e.g. custom properties even though it might be a bit more effort.

I understand that implementing the zoom property can break those sites that don't expect it to work in Firefox. But why not implement it as -moz-zoom? The new code will be able to use this, and compatibility with the old one will remain.

Severity: normal → S3

Firefox should support zoom. I expect to see Firefox support a feature that every other browser supports -- regardless of standards track.

https://developer.mozilla.org/en-US/docs/Web/CSS/zoom#browser_compatibility

This has been a bone of contention for 15 years. Enough is enough. Developers want it. Purists are against it for abstract purist reasons.

mozilla.org states:

"The non-standard zoom CSS property can be used to control the magnification level of an element. transform: scale() should be used instead of this property, if possible. However, unlike CSS Transforms, zoom affects the layout size of the element."
https://developer.mozilla.org/en-US/docs/Web/CSS/zoom

I think it’s not appropriate for you to recommend transform:scale – it’s a different functionality, different behavior.

There are known issues with transform:scale, to do with position and flow, with no easy workarounds. Particularly, subsequent element don't get repositioned to accomodate the transformed element. As your zoom article states:

"...unlike CSS Transforms, zoom affects the layout size of the element."

These aren't bugs, they are by design: transform isn't supposed to keep elements in the flow. Zoom is. transform:scale simply doesn't provide the same functionality as zoom.

There are no simple workarounds to make transform:scale act like zoom. Positioning can be sort of fixed with transform:origin 00, but no easy fix for the flow issue. In 2022, developers shouldn't need workarounds anyway.

I see this come up most often in the context of users reporting the Zoom controls are missing when using Excel online in Firefox:

I've manually analyzed 10 pages for CSS zoom, see https://docs.google.com/spreadsheets/d/1i7ErFvsRg9nwOfHTfeP7csPozjGZd0XKB-GXk1uhs4E/edit?usp=sharing

  • 1 page has a minor visual difference and would be fixed by supporting zoom.
  • 1 page would break by supporting zoom, unless we also unship -moz-transform (or make only one of them apply when both are specified on the same element).
  • No impact for the other 8

(Same finding as in comment #67)

I did not test mobile, only desktop Firefox and desktop Chrome.

What is the feasibility of making -moz-transform have no effect if zoom is also specified?

Flags: needinfo?(emilio)

(In reply to Simon Pieters [:zcorpan] from comment #87)

What is the feasibility of making -moz-transform have no effect if zoom is also specified?

If the scale factor in zoom and -moz-transform: scale() is the same, it would make sense to assume that the author only expected one to apply. Since this bug is for compatibility, it makes sense to prefer zoom in that situation and apply only zoom.

scale() takes either one or two parameters, so if there are two parameters with different values, i.e., asymmetric scaling, then the author may have wanted a different behavior in Firefox and maybe zoom should be ignored in that case. ?

(In reply to Simon Pieters [:zcorpan] from comment #87)

What is the feasibility of making -moz-transform have no effect if zoom is also specified?

Depends on what you mean with "have no effect", but I think the short answer either way is "rather tricky and/or quirky".

Do you mean not parse it? Parse it and support it in the OM, but somehow not honor it? Both are tricky in different ways. Maybe something else?

For "not parse it", generally the question is "what would trigger it". Say we see zoom, then -moz-transform, do we then ignore all -moz-transforms? With what granularity (for the whole page? For the same declaration block, ...)? What if we see -moz-transform and then zoom? Fixing that up to ignore the -moz-transform at parse-time is not really possible.

For the "not applying it in some cases" (basically comment 88), some context: -moz-transform right now is just a parse-time alias of transform. If we do something like comment 88, then the "easy" way would be to ignore transform as well. But I doubt that'd fly because I think zoom: 1; transform: scale(1); could be something potentially appearing on the wild, plus it's another compat hack that we wouldn't be able to get rid of and it affects standard transform. But if we decide to ignore -moz-transform but not transform, then it's even trickier because we'd need to either:

  • Store both separately (they would no longer become aliases). Questions of what happens if you set -moz-transform: <something> then transform: <something else> (which can trivially happen as a result of CSSOM or what not) arise.
  • Make -moz-transform a shorthand of transform, that sets a magic bit that says "this transform list came from -moz-transform". This bit wouldn't be reflected in serialization or anything else, and we'd use that to "ignore" transforms. That makes div.style.transform = div.style.transform potentially change behavior which is kind of hilarious, but might be the "less bad" option.

Ignoring those transforms at runtime is still not trivial, because transforms have other side effects other than applying the scale and so on (e.g., it also creates a fixed-position containing block for descendants etc). So it'd be rather hacky internally.

I do wonder what amount of breakage other than zoom would we find if we just unshipped -moz-transform tho, perhaps trying to unship it on nightly for a while and see if we see any non-zoom-related breakage could be a path forward? Then we could eventually disable -moz-transform and implement zoom in one go.

Though that said, zoom is still a huge mess as implemented in other browsers. e.g., it affects some CSSOM APIs like getComputedStyle, but not others like getBoundingClientRect, IIRC, and it's not even clear how it would really interact with others, or if that can ever be fixed... So I'd still be opposed to ship zoom without a spec for it that defines what works and what doesn't.

Flags: needinfo?(emilio) → needinfo?(zcorpan)

Thanks. Yeah, I agree "not parse it" is not viable. To make some sort of sense, it'd need to no longer be an alias to transform but its own property that is sometimes ignored (if zoom or transform is also specified on the same element).

Unshipping -moz-transform completely would indeed be cleaner, but I haven't checked what the breakage would be. This could probably be queried from httparchive with the tables in httparchive.experimental_parsed_css, looking for rules that include -moz-transform but not transform or -webkit-transform, and manually checking a handful. Testing on Nightly could also work but we might not get any bugs reported for only Nightly.

(Keeping my needsinfo to do this analysis.)

For your information, I did a review of the previous issue listed in the SeeAlso.
https://github.com/WebKit/standards-positions/issues/170#issuecomment-1530867635

Blocks: 1835345

Assigning to myself reflect the current state of things where:

  • There's acknowledgement from the CSS Working Group that zoom is useful.
  • It's unclear if it's implementable by Firefox or not due to the compat constraints.
  • If turns out to be not implementable for us the working group would probably standardize it under some different name that all browsers could implement (tbd).
  • So the main work items are prototyping it, see if/how terrible it is compat wise, see if we can move with Blink towards something saner (specially wrt getBoundingClientRect() and other CSSOM APIs), and depending on the outcome go back to the working group.

See https://github.com/w3c/csswg-drafts/issues/5623 for details and recent (last month) CSSWG discussions.

Assignee: nobody → emilio
Depends on: 1848639

(I accidentally cleared my ni? -- see https://bugzilla.mozilla.org/show_bug.cgi?id=390936#c90)

Flags: needinfo?(zcorpan)

I just want to give a little information on why I couldn't get transform to support the use case I needed. I'm working on an email service, and the UI needs to scale wide emails down to fit on small screens. This is the code I have to do this:

const { width, height } = htmlContainer.getBoundingClientRect();
const { width: containerWidth } =
  htmlContainer.parentElement.getBoundingClientRect();

const scale = containerWidth / width;
const rightMargin = width - width * scale;
const bottomMargin = height - height * scale;

if (scale < 1) {
  htmlContainerStyles = `transform-origin: 0 0; transform: scale(${scale}); margin-right: -${rightMargin}px; margin-bottom: -${bottomMargin}px;`;
  htmlContainerScaled = true;
} else {
  htmlContainerStyles = '';
}

I'm using a scale transform, and reducing the element width and height with matching negative margins that are calculated from the scale factor.

This works really well for email without images or email where the images are immediately loaded from cache, but when an image loads and changes the height of the htmlContainer element, bottomMargin is no longer accurate and I get extra white space in the bottom of the element. Since I can't listen for load events for images (they don't bubble), I don't really have any solution here. Unfortunately, this means I have to use zoom, and Firefox users won't benefit from this feature.

I hope it helps to share a use case that isn't covered by transform.

Might be missing something, but why can't you use a ResizeObserver observing htmlContainer for that? Seems like that would be the obvious way to watch for changes to its size in a more general way. I guess there's the tricky bit of having to un-scale before measuring again, which is a bit subtle, but it should pretty much just work, unless I'm missing something.

(In reply to Emilio Cobos Álvarez (:emilio) from comment #99)

Might be missing something, but why can't you use a ResizeObserver observing htmlContainer for that? Seems like that would be the obvious way to watch for changes to its size in a more general way. I guess there's the tricky bit of having to un-scale before measuring again, which is a bit subtle, but it should pretty much just work, unless I'm missing something.

Actually, it does work, but unscaling and rescaling causes the page to scroll higher. So, if you're at the bottom of the email and an image loads, you end up getting scrolled part way up the email. That's better than nothing though, so I'm going to wrap that in an if (navigator.userAgent.includes('Firefox')). Thanks. :)

(I know I could save the scrollTop and reset it after rescaling, but this is such an edge case, I think it's fine.)

(In reply to Hunter Perrin from comment #100)

Actually, it does work, but unscaling and rescaling causes the page to scroll higher. So, if you're at the bottom of the email and an image loads, you end up getting scrolled part way up the email. That's better than nothing though, so I'm going to wrap that in an if (navigator.userAgent.includes('Firefox')). Thanks. :)

Sweet, but probably wrap it on a !CSS.supports("zoom: 2") or something along those lines, please. Otherwise you're causing the kind of problem that I fear would prevent us from shipping zoom to begin with :)

(And actually I guess you need the ResizeObserver everywhere so that you deal with viewport / user zoom changes or what not, but that's probably more edge-case-y...)

PLEASE DO NOT UNDER ANY CIRCUMSTANCES CLOSE THIS ISSUE.

Instead, please push for making "zoom" an official standard to Google (Chrome, Edge, Android) and Apple (Safari, iOS) and anyone responsible.

Zoom is the only mechanism that:

  1. In Chrome/Edge can modify the "CSS reference pixel" size successfully (well, almost: apart from canvas, which doesn't scale the same way as other elements).
  2. Can be set with JavaScript (the scaling feature of browsers can't be modified with JavaScript).
  3. Can be set to an arbitrary percentage value (like 103%) (the scaling feature of browsers doesn't offer such flexibility, nor do the "device emulation" tools in F12).

My use case is that I want to set the browser size to physical size of iPhone (i.e. ~0.1 meters width) and maintain the iPhone's logical width of ~390 points in width). This can only be achieved by modifying the size of "CSS reference pixel".

What doesn't work:

  1. There are no extensions that would do this successfully (I tried a few and all didn't behave correctly).
  2. There are no tools in "device emulation".
  3. transform: scale(x) doesn't work the same as zoom.

What works:

  1. The native mechanism of browsers (but it doesn't offer arbitrary percentage, just 100%, 110%, 125% etc. and it has no per-element scaling like with "zoom").
  2. Zoom (except for canvas, which doesn't scale correctly in Chrome/Edge).

Please do not touch the "zoom" feature described here https://developer.mozilla.org/en-US/docs/Web/CSS/zoom (because it sounds like it could be removed) and please un-deprecate it. Or please implement an alternative mechanism (e.g. add to CSS "css-pixel-ratio: 1.04" instead of "zoom: 104%", which would do the trick or at least implement "any custom scaling like 103%" for browsers Chrome/Edge/Firefox/Safari).

Blocks: 1850661

(In reply to Simon Pieters [:zcorpan] from comment #90)

Unshipping -moz-transform completely would indeed be cleaner, but I haven't checked what the breakage would be. This could probably be queried from httparchive with the tables in httparchive.experimental_parsed_css, looking for rules that include -moz-transform but not transform or -webkit-transform, and manually checking a handful. Testing on Nightly could also work but we might not get any bugs reported for only Nightly.

Here are such pages, but also checking that zoom is absent:

https://docs.google.com/spreadsheets/d/1sFB38_--yCEJQaeT58NtnFG_pkQl9dMAYRVJdJgHhMQ/edit?usp=sharing

I think the best next step for the compat analysis is to implement zoom and remove -moz-transform and then manually checking the top pages in the list, comparing before/after, to see if anything is obviously broken by removing -moz-transform.

Flags: needinfo?(zcorpan)
Depends on: 1854441
Depends on: 1855763
Depends on: 1856017
Keywords: dev-doc-needed
Depends on: 1856755

(In reply to Simon Pieters [:zcorpan] from comment #104)

https://docs.google.com/spreadsheets/d/1sFB38_--yCEJQaeT58NtnFG_pkQl9dMAYRVJdJgHhMQ/edit?usp=sharing

I think the best next step for the compat analysis is to implement zoom and remove -moz-transform and then manually checking the top pages in the list, comparing before/after, to see if anything is obviously broken by removing -moz-transform.

I've now looked at the first 100 with zoom enabled and -moz-transform disabled. Nothing is obviously broken by not supporting -moz-transform for these pages, which is encouraging. There were 2 sites that have some issues with how zoom is implemented (rows 42 and 56).

  • https://www.ufs.ac.za/ Uses both zoom and -moz-transform for .SpotText. The size is correct, but the positioning is a bit off in Firefox Nightly compared to stable Firefox/Chrome.
  • https://www.superhry.cz/ Uses both zoom and -moz-transform for .iconsA. The icons are implemented with a sprite and then set background-position to get the correct icon shown. In Firefox Nightly zoom doesn't affect intrinsic sizes for CSS background images, which breaks this page.

Adding ni? for me to look at pages using zoom generally to try to find any other issues.

Flags: needinfo?(zcorpan)

In the comment above, for https://www.ufs.ac.za/ the positioning is off because it overrides left and bottom in @-moz-document url-prefix() (hack to target Gecko). Not much we can do about it except file a webcompat bug.

Checking the "red" pages in https://github.com/WebKit/standards-positions/issues/170#issuecomment-1530867635 in Firefox Nightly with zoom enabled and -moz-transform disabled (comparing with stable Firefox with default prefs).

Checking the first 20 pages in "Adoption of the feature on top sites" in https://chromestatus.com/metrics/feature/timeline/popularity/3578 (no comment for pages where there's no impact):

  • https://2ez.bet/ uses zoom: 0.95 on body, so now renders as intended. 🎉
  • https://apostasesportiva.vip/ uses zoom and -moz-transform on .flag_small but expects background image intrinsic size to be affected by zoom so is now broken 🔴

Conclusions:

  • Supporting zoom and not supporting -moz-transform is clearly a net improvement in terms of web compat.
  • No issues found from dropping -moz-transform support.
  • zoom needs to affect background image size.
  • Still unknown if zoom needs to affect font-size (when font-size is not specified) and natural dimensions of img (when width/height are not specified), but probably safer to match Chromium/WebKit.
Flags: needinfo?(zcorpan)
Depends on: 1860424
Depends on: 1861726
Depends on: 1861730
Depends on: 1864970
Depends on: 1865332
Depends on: 1861828
Depends on: 1874488
Depends on: 1876541
Depends on: 1876542
Depends on: 1876248
Duplicate of this bug: 1750047
Depends on: 1879769
Depends on: 1879746
Depends on: 1880189
Blocks: 1883840
Depends on: 1887221
Depends on: 1887261
Depends on: 1887627
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: