Bug 22989: Fix dimensions of new windows on macOS.
commit97380447e4ab66a44abed4ec0aeb5eeabf86404e
authorArthur Edelstein <arthuredelstein@gmail.com>
Mon, 14 Aug 2017 22:56:00 +0000 (14 15:56 -0700)
committerGeorg Koppen <gk@torproject.org>
Wed, 23 Aug 2017 12:31:33 +0000 (23 12:31 +0000)
tree289583893765cff4c013702662228e9eae51ec90
parent6c76c3083f5ed221deddc51d13e09e8f8b6418f4
Bug 22989: Fix dimensions of new windows on macOS.

Before this patch, a new Tor Browser window, non-maximized,
was showing a "don't maximize this window" notification briefly
as soon as it was first displayed. Worse, the notification box
that appears causes the window height to increase by 10 or 11
pixels and thus breaks our desired window dimension rounding.

Our intended behavior is that this notification only be shown
when the window is maximized by the user. I discovered that,
on macOS, windowState === window.STATE_MAXIMIZED for a short
time when the window is first created. Then it rapidly changes
to windowState === window.STATE_NORMAL. So I added a `setTimeout`
promise to postpone checking the window size until after
window creation "settles" and that seems to be enough to ensure
we avoid showing the spurious notification box at window
creation.

Also fixes Bug 22543, "Tor Browser 7.0 shows window
resize warning on every new window for a few seconds". And
fixes issues raised in comments 2 and 3 in that ticket as well.
src/chrome/content/torbutton.js