OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8" /> | 4 <meta charset="utf-8" /> |
5 <title>window.performance.timing attributes on an initial navigation</ti
tle> | 5 <title>window.performance.timing attributes on an initial navigation</ti
tle> |
6 <link rel="author" title="Google" href="http://www.google.com/" /> | 6 <link rel="author" title="Google" href="http://www.google.com/" /> |
7 <link rel="help" href="http://www.w3.org/TR/navigation-timing/#sec-navig
ation-timing-interface"/> | 7 <link rel="help" href="http://www.w3.org/TR/navigation-timing/#sec-navig
ation-timing-interface"/> |
8 <script src="/resources/testharness.js"></script> | 8 <script src="/resources/testharness.js"></script> |
9 <script src="/resources/testharnessreport.js"></script> | 9 <script src="/resources/testharnessreport.js"></script> |
| 10 <script src="/common/performance-timeline-utils.js"></script> |
10 <script src="resources/webperftestharness.js"></script> | 11 <script src="resources/webperftestharness.js"></script> |
11 | 12 |
12 <script> | 13 <script> |
13 setup({explicit_done: true}); | 14 setup({explicit_done: true}); |
14 | 15 |
15 var frame; | 16 var frame; |
16 function onload_test() | 17 function onload_test() |
17 { | 18 { |
18 frame = document.getElementById("frameContext"); | 19 frame = document.getElementById("frameContext"); |
19 test_namespace('navigation'); | 20 test_namespace('navigation'); |
(...skipping 11 matching lines...) Expand all Loading... |
31 | 32 |
32 </head> | 33 </head> |
33 <body onload="onload_test();"> | 34 <body onload="onload_test();"> |
34 <h1>Description</h1> | 35 <h1>Description</h1> |
35 <p>This test validates the unload event times are 0 when there is no pre
vious document.</p> | 36 <p>This test validates the unload event times are 0 when there is no pre
vious document.</p> |
36 | 37 |
37 <div id="log"></div><br /> | 38 <div id="log"></div><br /> |
38 <iframe id="frameContext" src="resources/blank_page_green.html" style="w
idth: 250px; height: 250px;"></iframe> | 39 <iframe id="frameContext" src="resources/blank_page_green.html" style="w
idth: 250px; height: 250px;"></iframe> |
39 </body> | 40 </body> |
40 </html> | 41 </html> |
OLD | NEW |