`; // --- Parent sayfada iframe oluşturup ekle --- (function() { const wrap = document.getElementById('wrap'); const iframe = document.createElement('iframe'); iframe.className = 'embed-frame'; iframe.setAttribute('title', 'embedded-content'); // İzinler: autoplay/ fullscreen vb. istersen burada ekleyebilirsin iframe.setAttribute('allow', 'autoplay; fullscreen; encrypted-media'); // sandbox: allow-same-origin + allow-scripts ile iç sayfa stil/js çalışır. // Eğer daha kısıtlı istersen sandbox değerini düzenle. iframe.setAttribute('sandbox','allow-same-origin allow-scripts allow-popups allow-forms'); // Eğer tarayıcı srcdoc destekliyorsa, doğrudan kullan (temiz ve güvenli) if ('srcdoc' in iframe) { iframe.srcdoc = innerHTML; } else { // srcdoc yoksa data URI fallback (base64) const b64 = btoa(unescape(encodeURIComponent(innerHTML))); iframe.src = 'data:text/html;base64,' + b64; } // iframe'i ekle ve tüm sayfayı kaplat wrap.appendChild(iframe); // Opsiyonel: page load anında başka DOM elemanlarını temizle // (ör. backend template içinde başka içerik varsa bu satır kaldırılabilir) try { // kaldırılmak istenen muhtemel elementleri gizle document.documentElement.style.background = '#000'; document.body.style.margin = '0'; } catch(e){/* ignore */} })();