http
HTTP/1.1 200 OK
Content-Security-Policy: block-all-mixed-content; default-src https:
<!DOCTYPE html>
<html>
<script>
fetch('http://api.example.com/users')
.then(r => r.json())
.catch(e => console.error('Blocked:', e));
// Browser blockiert HTTP-Request auf HTTPS-Seite
</script>
</html>