I have been developing my webapp with a certain zoom level on firefox that I set initially (using ctrl+wheel). Now when tested on a different PC on firefox, the default 100%
You can set the zoom using the CSS property zoom. It's an old IE thing which is also supported in Chrome, and Safari.
zoom
.zoom { zoom: 120%; }
However, this probably shouldn't be used on live sites...