Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/websocket/tests/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quellcode-Bibliothek iframe_websocket_sandbox.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/dom/websocket/tests/iframe_websocket_sandbox.html


<html><body>
<iframe id="frame" sandbox="allow-scripts allow-popups"></iframe>
<script type="application/javascript">
/* eslint-disable no-useless-concat */

onmessage = function(e) {
  parent.postMessage(e.data, '*');
}

var ifr = document.getElementById('frame');

if (location.search == '?nested') {
  let url = new URL(location);
  url.search = "";
  ifr.src = url.href;
} else if (location.search == '?popup') {
  let url = new URL(location);
  url.search = "?opener";

  ifr.srcdoc = "