()
| 2 | |
| 3 | // Adds an iframe to the document and returns it. |
| 4 | function addIframe() { |
| 5 | const iframe = document.createElement('iframe'); |
| 6 | document.body.appendChild(iframe); |
| 7 | return iframe; |
| 8 | } |
| 9 | |
| 10 | promise_test(async t => { |
| 11 | const iframe = addIframe(); |
no test coverage detected