summaryrefslogtreecommitdiffstats
path: root/docshell/test/bug570341_recordevents.html
blob: 51fc1cd76294f4cef9c70a2ecd45571347968837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>
    var start = Date.now();
    window._testing_js_start = Date.now();
    window['_testing_js_after_' + document.readyState] = start;
    document.addEventListener('DOMContentLoaded',
      function () {
        window._testing_evt_DOMContentLoaded = Date.now();
      }, true);
    document.addEventListener('readystatechange', function(){
      window['_testing_evt_DOM_' + document.readyState] = Date.now();
    }, true);
    function recordLoad() {
      window._testing_evt_load = Date.now();
    }
</script>
</head>
<body onload="recordLoad()">This document collects time
for events related to the page load progress.</body>
</html>