trisquel-icecat/icecat/dom/serviceworkers/test/sanitize/frame.html

11 lines
213 B
HTML

<!DOCTYPE html>
<script>
fetch("intercept-this").then(function(r) {
if (!r.ok) {
return "FAIL";
}
return r.text();
}).then(function(body) {
parent.postMessage(body, '*');
});
</script>