Note: This will be reported to Google as a bug but fixes often get delayed.
A web page that calls a function based on a window's width works in IE, Firefox, etc. but "sometimes" fails in Chrome. The problem (in Chromium-based browsers) only occurred when the target web page automatically reloads upon browser startup.
<script>
var dde = document.documentElement;
if(!document.documentElement) dde = document.body; // fix for IE6 and earlier
myWidth = Math.max(dde.scrollWidth,dde.offsetWidth,dde.clientWidth);
if(myWidth < 960) document.location.href="http://www.gooplusplus.com/mini.php";
</script>