1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / navigate_opener.html [blame]

<html>

 <head><title>Navigate opener</title>
 <script>
  function navigateOpener() {
    window.opener.location.href = "title2.html";
    return true;
  }
 </script>
 </head>

</html>