(src)
| 33 | let testIframe; |
| 34 | |
| 35 | function getIframe(src) { |
| 36 | const i = document.createElement('iframe'); |
| 37 | i.src = src; |
| 38 | return i; |
| 39 | } |
| 40 | |
| 41 | function insert(iframe) { |
| 42 | document.body.appendChild(iframe); |
no outgoing calls
no test coverage detected