Sha256: 93a85adeebcd66871f283a1648ac92fc8812300c3cce64d7499d437bd404640d

Contents?: true

Size: 564 Bytes

Versions: 45

Compression:

Stored size: 564 Bytes

Contents

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Dynamic iframe Generation</title>
  </head>
  <body>
    <p>The quick brown fox jumps over the lazy dog.</p>
    <iframe width="300" height="300">
      <p>iframes are not supported by your browser</p>
    </iframe>
    <script>
      var f = window.document.getElementsByTagName("iframe")[0];
      var doc = f.contentWindow.document;
      doc.open();
      doc.write('<html><head></head><body>This is the iframe</body></html>');
      doc.close();
    </script>
  EXPECTED_RUM_FOOTER_LOCATION</body>
</html>

Version data entries

45 entries across 45 versions & 3 rubygems

Version Path
newrelic_rpm-3.9.0.229 test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html
newrelic_rpm-3.8.1.221 test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html
newrelic_rpm-3.8.0.218 test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html
newrelic_rpm-3.7.3.204 test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html
newrelic_rpm-3.7.3.199 test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html