nested-context-navigations-embed.html (1791B)
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/embed-navigate-back.html", 13 "Test that embed navigations are not observable by the parent, even " + 14 "after history navigations by the parent"); 15 open_test_window("resources/embed-navigate-back.html?crossorigin", 16 "Test that crossorigin embed navigations are not observable by the " + 17 "parent, even after history navigations by the parent"); 18 open_test_window("resources/embed-navigate-back.html?cross-site", 19 "Test that cross-site embed navigations are not observable by the " + 20 "parent, even after history navigations by the parent"); 21 22 open_test_window("resources/embed-navigate.html", 23 "Test that embed navigations are not observable by the parent"); 24 open_test_window("resources/embed-navigate.html?crossorigin", 25 "Test that crossorigin embed navigations are not observable by the parent"); 26 open_test_window("resources/embed-navigate.html?cross-site", 27 "Test that cross-site embed navigations are not observable by the parent"); 28 open_test_window("resources/embed-refresh.html", 29 "Test that embed refreshes are not observable by the parent"); 30 open_test_window("resources/embed-refresh.html?crossorigin", 31 "Test that crossorigin embed refreshes are not observable by the parent"); 32 open_test_window("resources/embed-refresh.html?cross-site", 33 "Test that cross-site embed refreshes are not observable by the parent"); 34 35 </script>