mcafee%netscape.com d4bdc0ee87 Copying this file from mozilla/build. r=jrgm,dp
git-svn-id: svn://10.0.0.236/trunk@105215 18797224-902f-48f8-a5cc-f745e15eee43
2001-10-11 22:31:15 +00:00

19 lines
527 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>