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