github.com/lulzWill/go-agent@v2.1.2+incompatible/internal/crossagent/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3    <head>
     4      <title>Dynamic iframe Generation</title>
     5    </head>
     6    <body>
     7      <p>The quick brown fox jumps over the lazy dog.</p>
     8      <iframe width="300" height="300">
     9        <p>iframes are not supported by your browser</p>
    10      </iframe>
    11      <script>
    12        var f = window.document.getElementsByTagName("iframe")[0];
    13        var doc = f.contentWindow.document;
    14        doc.open();
    15        doc.write('<html><head></head><body>This is the iframe</body></html>');
    16        doc.close();
    17      </script>
    18    EXPECTED_RUM_FOOTER_LOCATION</body>
    19  </html>