I'm creating an extension for Microsoft Edge, and when I try to open new window with:
browser.windows.create({url:"preview.html",left:50,top:100,type:"popup",width:800,height:1000});
it opens in fullscreen, and not with dimensions I called browser.windows.create method with.
This method works as it should in Chrome and Firefox.
I have also tried to update window's dimensions in callback of browser.window.create method, but still the same:
browser.windows.create({url:"preview.html",left:left,top:top,type:"popup",width:800,height:1000},function(window){
browser.windows.update(window.id,{left:left,top:top,width:800,height:1000});
});