chromium/chrome/test/data/navigation_interception/navigation_from_user_gesture_to_iframe_page.html

<!DOCTYPE html>
<html>
<!--

Copyright 2016 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.

-->
<head>
  <meta name="viewport"
    content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
  <script>
    function openIFrameContainerPage() {
      window.location = 'iframe_container_page.html';
    };
  </script>
</head>
<body style='height:10000px;' onclick='openIFrameContainerPage();'>
  Click page.
</body>
</html>