I'm trying to limit the minimum height and width of a chrome (xul) window. The window itself is opened using the window.openDialog method. I tried using the minwidth and minheight window propertiet, but that does not seem to have any effect on the window. I also tries to limit the size by handling the onresize event as follows:
onresize()
{
return false;
}
but this does not work as well.
Any clues ?