1
    2
    3
    4
    5
    6
    7
    8
    9
   10

content / test / data / navigation_controller / iframe_popup.html [blame]

<html>
<body>
<div id="test_link">Test</div>
<script>
  document.getElementById('test_link').addEventListener('click', () => {
      window.open('hash_anchor_with_iframe.html');
  });
</script>
</body>
</html>