nested-context-navigations-iframe.html (1781B)
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> 12 open_test_window("resources/iframe-navigate-back.html", 13 "Test that iframe navigations are not observable by the parent, even after history navigations by the parent"); 14 open_test_window("resources/iframe-navigate-back.html?crossorigin", 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"); 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", 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"); 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"); 28 open_test_window("resources/iframe-refresh.html?cross-site", 29 "Test that cross-site iframe refreshes are not observable by the parent"); 30 31 </script>