parent: the context in which events attached to non-HTMLElements are called
(parent)
| 21172 | * {@docCategory EventGroup} |
| 21173 | */ var EventGroup = /** @class */ function() { |
| 21174 | /** parent: the context in which events attached to non-HTMLElements are called */ function EventGroup1(parent) { |
| 21175 | this._id = EventGroup1._uniqueId++; |
| 21176 | this._parent = parent; |
| 21177 | this._eventRecords = []; |
| 21178 | } |
| 21179 | /** For IE8, bubbleEvent is ignored here and must be dealt with by the handler. |
| 21180 | * Events raised here by default have bubbling set to false and cancelable set to true. |
| 21181 | * This applies also to built-in events being raised manually here on HTMLElements, |
nothing calls this directly
no outgoing calls
no test coverage detected