| <!DOCTYPE html> |
| <script src="/js-test-resources/js-test.js"></script> |
| <script> |
| description('Tests that subsequent navigation in an iframe restored from history does not report resource timing.'); |
| window.jsTestIsAsync = true; |
| function runTest() { |
| if (!sessionStorage.didNav) { |
| sessionStorage.didNav = true; |
| // Navigate a timeout to make sure we generate a history entry that we can go back to. |
| setTimeout(function() { |
| location.href = 'resources/alert-then-back.html'; |
| }, 0); |
| } else { |
| delete sessionStorage.didNav; |
| window.addEventListener('message', (event) => { |
| resources = performance.getEntriesByType('resource'); |
| shouldBe('resources.length', '1'); // There is only one report as we don't report resource timing for cached main document. |
| shouldBeEqualToString('resources[0].name', 'http://127.0.0.1:8000/js-test-resources/js-test.js'); |
| if (window.testRunner) |
| finishJSTest(); |
| }); |
| document.getElementById('target-iframe').contentWindow.postMessage('navigate', '*'); |
| } |
| } |
| window.onload = runTest; |
| </script> |
| <iframe id="target-iframe" src="http://localhost:8080/misc/resources/navigate-on-message.html"></iframe> |