clipboard-apis icon indicating copy to clipboard operation
clipboard-apis copied to clipboard

Clipboard API and events

Results 96 clipboard-apis issues
Sort by recently updated
recently updated
newest added

I think. I also think that a great deal more needs to be done with this explainer to get up to speed, so this change might not be appropriate at...

Linux machines frequently have multiple clipboards ("selections"). For example, using X11, in addition to the "clipboard" selection that ctrl-C and ctrl-V operate on, there is a "primary" selection which is...

### Feature Request / Proposal To add a boolean property `sensitive` to a `ClipboardItem`: ```js const passwordBlob = new Blob(["secret"], { type: "text/plain" }); await navigator.clipboard.write([ new ClipboardItem({ [passwordBlob.type]: passwordBlob...

Reading *all* supported formats from the clipboard during read() takes time especially since the HTML/Image payload can be in MBs/GBs. We could defer reading of the actual data from the...

When exporting images to the clipboard (via right-click and "Copy Image"), Chrome and Firefox currently order the flavors differently on macOS's pasteboard. Chrome adds: ``` public.tiff NeXT TIFF v4.0 pasteboard...

Closes #106 The following tasks have been completed: * [x] Confirmed there are no ReSpec/BikeShed errors or warnings. * [x] Modified Web platform [tests](https://crrev.com/c/2164248) Implementation commitment: * [ ] WebKit...

Copied from https://github.com/w3c/editing/issues/423#issuecomment-1858535412. @saschanaz said: > Hmm, I was not fully understanding this issue back in the meeting, as my focus was on a different issue. To reiterate what @smaug----...

https://github.com/w3c/permissions/issues/175#issuecomment-671553031 from @rniwa: >Shouldn't we also remove "clipboard-write" given we wouldn't have multiple implementation support for that either?? And I think Mozilla also have no intention to implement that. (cc...

The typical common format between applications for copy&paste on the desktop used to be RTF for a long time. Reading , only HTML is suggested for rich text, but many...

WRT https://w3c.github.io/clipboard-apis/#dom-clipboard-read 1. `items` is referenced after it is no longer in scope ("if `items` has size > 0" comes after the scope of "Let `items` [...]" 2. "Set representation’s...