blob: 58432b9a650b6ca27fe589d625e767c150905293 [file] [log] [blame]
// Creates and iframe and appends it to the body element. Make sure the caller
// has a body element!
function createAdFrame() {
let ad_frame = document.createElement('iframe');
document.body.appendChild(ad_frame);
internals.setIsAdSubframe(ad_frame);
return ad_frame;
}