itchio / itch.io

:bug: Public itch.io issues tracker and documentation - use support instead for private information!
https://itch.io/support
242 stars 27 forks source link

iFrame blocks navigator.clipboard.writeText #1202

Open signorpipo opened 3 years ago

signorpipo commented 3 years ago

I need to copy to the clipboard from within my HTML game, but on itch the iFrame require extra permissions to let the writeText works.

It seems that for this it is required to specify something as follow: <iframe src="index.html" allow="clipboard-write"></iframe>

pi-kei commented 3 years ago

I found out that document.execCommand("copy"); method works. At least in Chrome.