gavin%gavinsharp.com ce097a4da9 Remove extra trailing } to fix failure due to fix for bug 350268
git-svn-id: svn://10.0.0.236/trunk@208580 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-27 19:42:21 +00:00

18 lines
520 B
HTML

<!-- Pick off begin time as a cgi argument and print it out -->
<html>
<!-- call this with an arg, e.g. file://foo/startup-test.html?begin=12345678 -->
<!-- In-line this to avoid compilation. -->
<body onload="
var now = (new Date()).getTime();
var begin = document.location.search.split('=')[1]; // ?begin=nnnnn
var startupTime = now - begin;
document.write('\n\nStartup time = ' + startupTime + ' ms<br>');
if (window.dump) {
dump('\n\n__startuptime,' + startupTime + '\n\n');
}
">
</body>
</html>