HTML::DOM::Event::UI - A Perl class for HTML DOM UIEvent objects
# ...
This class provides UIEvent objects for the HTML::DOM manpage, which objects are passed to event handlers for certain event types when they are invoked. It inherits from the HTML::DOM::Event manpage.
See also those inherited from the HTML::DOM::Event manpage.
These are both read-only and ignore their arguments.
The view object associated with the event.
A number that's meant to specify some info about the event. For instance,
for the DOMActivate event, 1 is a normal activation, and 2 is a
hyperactivation (whatever that means). A click event on an element triggers
a DOMActivate event, simply copying the detail attribute from the click
event.
This initialises the event object. See initEvent in the HTML::DOM::Event manpage for more detail.
Alternative to initUIEvent that's easier to use:
init $event type => $type, propagates_up => 1, cancellable => 1, view => $view, detail => 1, ;