Re: [whatwg/dom] cancelBubble legacy property (#211)

In Gecko UIEvent has that indeed and it sets the propagation stopped flag. This is really ancient stuff.
I thought we could have removed it, like to removed couple of similar properties few years ago.
IIRC, this is Netscapeism.

Looks like the property works in a bit different way in different browsers. In Gecko it maps to
stopPropagation() and you can effectively un-stopPropagation() with cancelBubble = false.
In Blink you can also cancel, but only cancelBubble = true, not stopPropagation().

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/211#issuecomment-207773746

Received on Saturday, 9 April 2016 11:33:02 UTC