Textarea do not allow paste

Hello,

I’m developing an application for a forum, and face numerous issues with the textarea.

One of them is that I’m unable to paste in textarea when text area is in focus. The “paste” button doesn’t appear. If I set the focus on any other content of the page, paste works fine. Is this a bug ?

I tried to create a button to trigger the ‘Paste’ action as a workaround, but was unable to workout this. Any input will be appreciated.

Thx

HTML

CSS
input, textarea {
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
-o-user-select: auto !important;
user-select: auto !important;
}

same as input[text] with rc0 and rc1