blob: 89f48b5344701fdf0034386d0cc996a976a6cdb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
<script>
function start() {
const iframe = document.createElement('iframe')
iframe.policy.allowedFeatures()
}
window.addEventListener('load', start)
</script>
</head>
</html>
|