Forcing windows resize to fire
Since then a better solution has been posted in https://stackoverflow.com/a/18693617/2306587:
window.dispatchEvent(new Event('resize'));
You can resize the window like this...
window.resizeTo(width, height);
And if you need to trigger the event handler, you can do that like this...
window.onresize();