Open
Bug 1102947
Opened 10 years ago
Updated 2 years ago
Picking up element in Customization shifts position and layout of other elements
Categories
(Firefox :: Toolbars and Customization, defect, P3)
Firefox
Toolbars and Customization
Tracking
()
NEW
People
(Reporter: elbart, Unassigned)
Details
Attachments
(2 files)
When picking up an element int he right Customization-pane, and just move it a few pixel over any adjacent element, the logos, labels and/or position of most of the following elements shift 1px.
Dropping the picked element resets the positions.
Reproduced in Windows and Ubuntu.
Comment 2•10 years ago
|
||
Can you please specify versions in the bugs you file? Both here and bug 1102938.
Comment 3•8 years ago
|
||
I can confirm this in the latest Nightly (64bit) on Windows 7 (64bit).
Second ling will go a few pixels down after you grab one button to move.
Comment 4•8 years ago
|
||
(In reply to Virtual_ManPL [:Virtual] - (ni? me) from comment #3)
> I can confirm this in the latest Nightly (64bit) on Windows 7 (64bit).
> Second ling will go a few pixels down after you grab one button to move.
Are you using a non-100% dpi/zoom setting in Windows? Default profile?
I can't reproduce on Win10.
Flags: needinfo?(virtual)
Priority: -- → P3
Comment 5•8 years ago
|
||
(In reply to :Gijs Kruitbosch from comment #4)
> Are you using a non-100% dpi/zoom setting in Windows?
No.
(In reply to :Gijs Kruitbosch from comment #4)
> Default profile?
No,
but I can reproduce it also with clean new fresh profile without any addons.
It's reproducible in Safe Mode too.
(In reply to :Gijs Kruitbosch from comment #4)
> I can't reproduce on Win10.
I'm on Windows 7 (64bit).
Flags: needinfo?(virtual)
Updated•8 years ago
|
Flags: needinfo?(gijskruitbosch+bugs)
Comment 6•8 years ago
|
||
I can only reproduce on the win7 classic theme, but not on windows 7 glass. I think there's a peculiar Core issue here, because if I log the coordinates of the buttons and their labels, they don't change.
The whole thing seems to be related to the translate() transform that we give the icons to allow there to be a 'space' to indicate where an icon will be dropped. When the whole thing is at rest (without dragging any items) I can reproduce just by giving e.g. the 'share this page' item style="transform: translate(0, 0)" which should of course have no effect at all. As noted, I don't see any differences in the sizes and positions at all (checking with getBoundingClientRect(), but the element has clearly shifted visually (by 1px) on the screen. I don't know why.
Milan, this feels like a graphics issue. Do we treat classic and win7 differently in terms of graphics backend (or does the backend function differently on non-glass or whatever) ? Any idea what might be causing the differences I'm seeing even though the items are still in the same place as far as CSS and the DOM is concerned?
Flags: needinfo?(gijskruitbosch+bugs) → needinfo?(milan)
Comment 7•8 years ago
|
||
(In reply to :Gijs Kruitbosch from comment #6)
> I can only reproduce on the win7 classic theme, but not on windows 7 glass.
Just FYI, I can reproduce it with Aero enabled theme.
Adding also Graphics section from about:support, so you can see which backends I'm using.
If this happens accelerated and not (since it happens in safe mode), if it is in graphics, it's in the platform independent code. Could be some rounding off error. Kats, thoughts?
Flags: needinfo?(milan) → needinfo?(bugmail)
Comment 9•8 years ago
|
||
I'm not really sure. The first guess is that the translate property changes layerization of the items and that causes the pixel shifts. I tried reproducing and I see a slight shift in the bottom row of icons (on my Windows 10 Surfacebook) but it looks different from the video so I'm not sure I'm seeing the same problem. Markus, maybe you know what's going on here?
Flags: needinfo?(bugmail) → needinfo?(mstange)
Comment 10•8 years ago
|
||
This probably happens because the icons and the labels aren't perfectly pixel-aligned, and pixel snapping makes different decisions before and after layerization. Pixel snapping happens with respect to a certain origin, and for a given element, its pixel snapping origin is the top left corner of the border box of the closest transformed ancestor element.
Matt, does our current code attempt to work around this? I know that for inactive transforms we have the "residual translation"; was the intention to use it for active transforms as well?
Flags: needinfo?(mstange) → needinfo?(matt.woodrow)
Comment 11•8 years ago
|
||
(In reply to Markus Stange [:mstange] from comment #10)
> This probably happens because the icons and the labels aren't perfectly
> pixel-aligned, and pixel snapping makes different decisions before and after
> layerization. Pixel snapping happens with respect to a certain origin, and
> for a given element, its pixel snapping origin is the top left corner of the
> border box of the closest transformed ancestor element.
>
> Matt, does our current code attempt to work around this? I know that for
> inactive transforms we have the "residual translation"; was the intention to
> use it for active transforms as well?
residual transforms are computed as part of DefaultComputeEffectiveTransforms, so should apply to both active and inactive layers.
As Markus said, snapping is applied relative to the nearest transformed element.
For example, if you have two 0.4px offsets, then those would normally be snapped to 1px. Once a transform is added in between them, each 0.4px offset gets snapped to 0px separately, resulting in a different final position for the element.
Flags: needinfo?(matt.woodrow)
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•