Re: [w3c/clipboard-apis] New terminology: ClipboardItem "entry" as data type → value. (#127)

@lgarron commented on this pull request.



>  
   [Exposed=Window] interface ClipboardItem {
-    constructor(record<DOMString, ClipboardItemData> items,
+    constructor(record<DOMString, ClipboardEntryValue> entries,

This change assumes that https://github.com/w3c/clipboard-apis/pull/126 is correct (e.g. matching Chrome's current behaviour). If this should accept `Promise`s, then either:

- the record values should be `ClipboardEntryValuePromise` and Chrome's implementation should be changed, or
- the record values should be allowed to be either `ClipboardEntryValue` or `ClipboardEntryValuePromise`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/clipboard-apis/pull/127#pullrequestreview-437380075

Received on Thursday, 25 June 2020 10:55:24 UTC