Re: [w3c/editing] July 29th F2F Agenda Item - Clipboard events (#135)

Decision: Keep cut/copy/paste around

* They already ship, so there is code that depends on them
* Beforeinput doesn't handle the 'copy' case, and having 'copy' without 'cut' and 'paste' feels odd 

Event order:

* beforeinput
* cut (or paste)
* input

No beforeinput/input for copy events

What about Cancelable? (for contentEditable != false)
* canceling beforeinput (type=cut/paste):
   * prevents the cut/paste event
   * prevents dom update
   * prevents clipboard update
* canceling cut/paste:
   * prevents dom update
   * prevents clipboard update

Investigate where spec says paste events are not cancelable: Editing Spec 6.2 bullet point 6

---
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/editing/issues/135#issuecomment-236702797

Received on Monday, 1 August 2016 20:48:17 UTC