| Yoav Weiss | 6f84a2a | 2019-04-23 13:18:26 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <meta charset="utf-8" /> |
| 5 | <meta name=timeout content=long> |
| 6 | <title>Resource Timing embed navigate - back button navigation</title> |
| 7 | <script src="/resources/testharness.js"></script> |
| 8 | <script src="/resources/testharnessreport.js"></script> |
| 9 | <script src="/common/get-host-info.sub.js"></script> |
| 10 | <script src="resources/nested-contexts.js"></script> |
| 11 | <script> |
| Tom McKee | 258520b | 2021-09-28 15:52:53 | [diff] [blame] | 12 | open_test_window("resources/iframe-navigate-back.html", |
| Noam Rosenthal | 93367ac | 2022-05-10 12:49:26 | [diff] [blame] | 13 | "Test that iframe navigations are not observable by the parent, even after history navigations by the parent"); |
| Tom McKee | 258520b | 2021-09-28 15:52:53 | [diff] [blame] | 14 | open_test_window("resources/iframe-navigate-back.html?crossorigin", |
| Noam Rosenthal | 93367ac | 2022-05-10 12:49:26 | [diff] [blame] | 15 | "Test that crossorigin iframe navigations are not observable by the parent, even after history navigations by the parent"); |
| 16 | open_test_window("resources/iframe-navigate-back.html?cross-site", |
| 17 | "Test that cross-site iframe navigations are not observable by the parent, even after history navigations by the parent"); |
| Tom McKee | 258520b | 2021-09-28 15:52:53 | [diff] [blame] | 18 | open_test_window("resources/iframe-navigate.html", |
| 19 | "Test that iframe navigations are not observable by the parent"); |
| 20 | open_test_window("resources/iframe-navigate.html?crossorigin", |
| Noam Rosenthal | 93367ac | 2022-05-10 12:49:26 | [diff] [blame] | 21 | "Test that crossorigin iframe navigations are not observable by the parent"); |
| 22 | open_test_window("resources/iframe-navigate.html?cross-site", |
| 23 | "Test that cross-site iframe navigations are not observable by the parent"); |
| Tom McKee | 258520b | 2021-09-28 15:52:53 | [diff] [blame] | 24 | open_test_window("resources/iframe-refresh.html", |
| 25 | "Test that iframe refreshes are not observable by the parent"); |
| 26 | open_test_window("resources/iframe-refresh.html?crossorigin", |
| 27 | "Test that crossorigin iframe refreshes are not observable by the parent"); |
| Noam Rosenthal | 93367ac | 2022-05-10 12:49:26 | [diff] [blame] | 28 | open_test_window("resources/iframe-refresh.html?cross-site", |
| 29 | "Test that cross-site iframe refreshes are not observable by the parent"); |
| 30 | |
| Yoav Weiss | 6f84a2a | 2019-04-23 13:18:26 | [diff] [blame] | 31 | </script> |
| 32 | |