I have two scenes on a single page that I originally initialized with renderer.setSize(elem.clientWidth, elem.clientHeight) but found the canvas would not resize properly on a window resize event that called the same renderer.setSize as above. The renderer object indicated the the canvas size was correct, but on inspecting the canvas I found competing width and height settings; one set in the inline style declaration and also height and width tags in the markup.
On removing renderer.setSize in the init function, this behavior went away and the scene resized as expected. Is this behavior by design?
Besides, keep in mind that using more than one renderer is not recommended. You can use a single renderer even when having more than one canvas in your DOM.