https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 868ee5b1adf71c29a1727d6f007ddb2a90f00cb4 authored by cltbld on 23 September 2011, 00:19:58 UTC
Merging together weird heads on GECKO60_2011080402_RELBRANCH; doesn't affect any code that is still to be released, just needs to be done to get around the single head per branch hook
Tip revision: 868ee5b
startup-test.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>
back to top