After creating an extension for Chrome, I specified the dimensions of the popup to be 600 x 300 px
. Everything was working perfectly until Chrome updated to version 27.
As shown in the screenshot, I set the width and height using CSS, but there is still a persistent 30 px gap at the bottom of the popup. Despite trying various solutions, including setting body
to overflow: hidden
, the gap remains. There are no elements extending outside of the page boundary either.
window.resize( /* */ ); //no change observed
So, how can I ensure that the size of the popup is exactly 600 x 300 px
in Chrome 27?