<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Untitled 1</title>
<script>
function getWidth() {
return window.innerWidth;
}
</script>
</head>
<body onresize="document.title = getWidth()">
<script>document.title = getWidth()</script>
</body>
</html>