Testing by setting maxInner's to 400 my newwin was 450 x 400, the width here is not adhering to 200's because windows cannot get under 450 (windows at least, the exact 50'ness is a coincidence) due to chrome elements - I think the size is hardcoded somewhere. And therefore at 200's width stepping 500 is also 450.
Currently, using 600 and over for width
600 x 500700 x 500800 x 500, etc ?600 x 600800 x 6001000 x 600600 x 700800 x 7001000 x 700600 x 800800 x 8001000 x 800600 x 900800 x 9001000 x 900600 x 1000800 x 10001000 x 1000
some of those are unrealistic, such as 600 wide by 1000 tall (landscape desktop - I guess users could have portrait monitors, but IMO unlikely at those low res)
OT: adding 1200 and 1400 only slightly increases the buckets at most (sticking to 200s width, 100's height - and some of those become really unrealistic such as 1400 wide by 600 high - my fuzzy number crunching will tell a better story)
NEWWIN is a subset of LB, so LB will always fit/match NEWWIN (as long as maxInner values are not over 1600). LBing allowing some sizes inbetween doesn't hinder newwin, but allows users should they maximize/resize within our maxInner's. Which is what it is designed for - usability should the user resize.
So in hindsight I think this isn't a blocker, and we shouldn't align LB and NW steps
Class discuss, or not! Sorry for the noise @donuts
we should align the steps, because LBing allows smaller steps, a new win size error (e.g. being a few pixels too small could force a LB size that doesn't match newwin steps = more entropy
Just to be sure, if we set the newwin max width to 1600 and keep the height at 1000, as it seeems to be the current consensus, we don't need to touch LB steps and we can close this, right?
95% sure we will go with 1400 as a max width, maybe drop height by 1 step to 900. Am furiously coding a whatif newwin calculator as I type (sooo many parameters, it's exponential). Regardless of our final size, the steps are out of sync
Here's an example
newwin expects to open at 1000 width (or 1400)
but code is off due to some dPR/dPI issue, or user bumps the chrome smaller
LBing kicks in and we end up at viewport (webcontent) at 900 width (or 1300)
outlier case but stranger things have happened: user at 800 drags the the chrome bigger, ends up at 900
odd numbered 100 widths are not newwin steps
in these cases the user will be an outlier
hope that makes sense. Just align LB/newwin steps exactly the same
tl;dr: I think this is the only diff (but someone should check)
LB steps widths at 100px from 600-1600, but newwin widths in this range step 200
LB heights over 600px is always 100px + for newwin - right?
So, independently of what we end to pick as the initial newwin size (always multiples of 100px, both for width and height), we should be good by just forcing newwin to round at 100 instead of 200 also the width, like it does for the height.
by just forcing newwin to round at 100 instead of 200
Nope. That would increase the number of possible newwin sizes, which we are trying to control. AFAICT we just need to make LBing where it steps in 100s width to 200's. Align LB to newwin, not newwin to LBing :)
but hold that thought, because I think we should use a variable newwin maxWidth based on newwin height - e.g. #33282 (comment 2929358) .. so I think #33282 (closed) should block this issue