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