[w3c/clipboard-apis] The "context is editable"-condition in the fire event-algorithm needs clarification (#69)

I found the [current](https://github.com/w3c/clipboard-apis/commit/11619a7e2a8537f8c60eb05f76b192cfa909b30a#r27635154) description's reference to "context" a bit vague. 

For instance, if I select `<p>some text</p>`, Chrome's copy-event targets the p-element. 
Firefox's copy-event targets the `<p>`'s inner text node.

Here `<p>` isn't editable and `document.activeElement == body` so according to the current spec, `body` should be targeted, not the p-element?

In reality, Chrome and Firefox don't care about "editable" here: The p-element is not editable but is targeted nevertheless.  Let's update the spec to reflect this?

-- 
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/issues/69

Received on Tuesday, 20 February 2018 16:34:34 UTC