Re: [clipboard events] implicitly prevent default event action?

On Tue, May 20, 2014 at 10:42 AM, Hallvord R. M. Steen
<hsteen@mozilla.com> wrote:
> Hm.. I didn't really know that was a "rule". I basically want
>
> element.dispatchEvent(new ClipboardEvent('copy'))
>
> to be pretty much equivalent to
>
> document.execCommand('copy')

No that is wrong and I said as much before in another review round. :/

Events are for observation, they don't cause things to happen.


> Spec-wise, event.clipboardData is an instance of the DataTransfer interface in HTML5. Can/should I spec this flag in the Clipboard Events spec, or argue that it should be added to HTML5 (or HTML6 / HTML Living / whatever)?

We should document classes in one place ideally, especially
fundamental concepts of it such as flags.


> Well, I guess it's always possible to have an event listener call dispatchEvent() on some other element, passing the same event object.. Not sure if that matters?

Not as long as it's clear what should happen.


-- 
http://annevankesteren.nl/

Received on Tuesday, 20 May 2014 09:32:58 UTC