* Write the HTML page into the provided iframe then add it to the document.
(doc, iframe, adContent)
| 491 | * Write the HTML page into the provided iframe then add it to the document. |
| 492 | */ |
| 493 | function writeFriendlyFrame(doc, iframe, adContent) { |
| 494 | doc.body.appendChild(iframe); |
| 495 | iframe.contentDocument.write(adContent); |
| 496 | iframe.contentDocument.close(); |
| 497 | } |
| 498 | |
| 499 | /** |
| 500 | * Write the HTML page into the provided iframe, turn it into a safe frame |
no test coverage detected