Sha256: b38b32212b886fd78c99d3e69f5bcd0403c836d9b52846e8382493b0aaa15853
Contents?: true
Size: 653 Bytes
Versions: 17
Compression:
Stored size: 653 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>This is the child frame title</title> <script> function closeWin() { var iframe = window.parent.document.getElementById('childFrame'); iframe.parentNode.removeChild(iframe) } </script> </head> <body id="childBody"> <a href="javascript:void(0)" onClick="closeWin()">Close Window Now</a> <a href="javascript:void(0)" onClick="setTimeout(function(){closeWin()}, 10)">Close Window Soon</a> <iframe src="/frame_one" id="grandchildFrame1"></iframe> <iframe src="/frame_two" id="grandchildFrame2"></iframe> </body> </html>
Version data entries
17 entries across 17 versions & 5 rubygems