1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

content / test / data / fenced_frames / basic_fenced_frame_src_navigate_on_click.html [blame]

<!DOCTYPE html>
<html>
  <body>
  <div>
    <button onclick="navigateFrames();">Navigate</button>
  </div>
  <fencedframe id="frame1"></fencedframe>

  <script>
    function navigateFrames() {
      const url = new URL("title1.html", location.href);
      document.getElementById('frame1').config = new FencedFrameConfig(url);
    }
  </script>

</body>

</html>