The following Javascript will put the browser client size as the title.
<html><head><script>function titleIsSize() {document.title = "" + document.body.clientWidth + " pixels.";}</script></head><body onresize="titleIsSize()" ></body></html>