| 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.navigation.type with a reloaded navigation</ti
tle> | 5 <title>window.performance.navigation.type with a reloaded navigation</ti
tle> |
| 6 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> | 6 <link rel="author" title="Microsoft" href="http://www.microsoft.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 <script> | 12 <script> |
| 12 setup({explicit_done: true}); | 13 setup({explicit_done: true}); |
| 13 | 14 |
| 14 // explicitly test the namespace before we start testing | 15 // explicitly test the namespace before we start testing |
| 15 test_namespace('navigation'); | 16 test_namespace('navigation'); |
| 16 var reload_frame; | 17 var reload_frame; |
| 17 var startingTime; | 18 var startingTime; |
| 18 | 19 |
| 19 function deepCopy(p, c) | 20 function deepCopy(p, c) |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 <li>All of the widow.performance.timing.* values after reload are >
all of the window.performance.timing.* values | 100 <li>All of the widow.performance.timing.* values after reload are >
all of the window.performance.timing.* values |
| 100 prior to reload.</li> | 101 prior to reload.</li> |
| 101 </ul> | 102 </ul> |
| 102 </p> | 103 </p> |
| 103 | 104 |
| 104 <div id="log"></div> | 105 <div id="log"></div> |
| 105 <br /> | 106 <br /> |
| 106 <iframe id="frameContext" src="resources/blank_page_green.html" style="w
idth: 250px; height: 250px;"></iframe> | 107 <iframe id="frameContext" src="resources/blank_page_green.html" style="w
idth: 250px; height: 250px;"></iframe> |
| 107 </body> | 108 </body> |
| 108 </html> | 109 </html> |
| OLD | NEW |