Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <title>Popup created using window.open</title> | |
| 4 <script> | |
| 5 function deleteframe() { | |
| 6 var frame = document.getElementById('frame'); | |
| 7 frame.parentNode.removeChild(frame); | |
| 8 } | |
| 9 </script> | |
| 10 </head> | |
| 11 <body> | |
| 12 pop-up test page | |
| 13 <iframe id="frame" src="popup-subframe.html"></iframe> | |
| 14 </body> | |
| 15 </html> | |
| OLD | NEW |