- From: Johannes Wilm <notifications@github.com>
- Date: Tue, 26 Jul 2016 17:46:59 -0700
- To: w3c/editing <editing@noreply.github.com>
- Message-ID: <w3c/editing/issues/131@github.com>
As requested by the meeting of the browser makers, we have added a dataTransfer object to hold data about content that is to be added that is more than just simple text input. This can be obtained using: ``` event.transferData.getData('text/html') ``` A version of the same data converted to plain text can be obtained using: ``` event.transferData.getData('text/plain') ``` Now the question is, what should the relation between the plain text version and the value of `event.data` be. There is currently only one `inputtype` of the `beforeinput` event for which the `data` attribute is used (`insertText`). Would it simpliufy things if we: A) Use the `dataTransfer` object for all inputtypes where content data is involved and additionally the `data` attribute for the `insertText` inputtype? (current option) B) Use the `dataTransfer` object for all inputtypes where content data is involved and not use the `data` attribute at all? C) Use the dataTransfer object for all inputtypes where content data is involved except the `insertText` inputtype for which we use the `data` attribute? --- 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/131
Received on Wednesday, 27 July 2016 00:47:45 UTC