| Package | Description |
|---|---|
| com.gargoylesoftware.htmlunit.html |
Classes specific to HTML pages, particularly the HtmlPage which represents
an HTML document and provides access to its content.
|
| com.gargoylesoftware.htmlunit.javascript.host |
Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
|
| com.gargoylesoftware.htmlunit.javascript.host.css |
Implementations of the CSS JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
|
| com.gargoylesoftware.htmlunit.javascript.host.dom |
Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
|
| com.gargoylesoftware.htmlunit.javascript.host.event |
Implementations of the JavaScript host objects for events - users of HtmlUnit shouldn't
need anything in this package.
|
| com.gargoylesoftware.htmlunit.javascript.host.html |
Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
|
| com.gargoylesoftware.htmlunit.javascript.host.media |
Implementations of the JavaScript host media objects - users of HtmlUnit shouldn't
need anything in this package.
|
| Modifier and Type | Method and Description |
|---|---|
<P extends Page> |
HtmlOption.click(Event event)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Simulates clicking on this element, returning the page in the window that has the focus after the element has been clicked. |
<P extends Page> |
HtmlImageInput.click(Event event)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Simulates clicking on this element, returning the page in the window that has the focus after the element has been clicked. |
<P extends Page> |
HtmlElement.click(Event event)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Simulates clicking on this element, returning the page in the window that has the focus after the element has been clicked. |
protected ScriptResult |
HtmlRadioButtonInput.doClickFireClickEvent(Event event)
This method implements the control onclick handler call during the click action.
|
protected ScriptResult |
HtmlElement.doClickFireClickEvent(Event event)
This method implements the control onclick handler call during the click action.
|
protected ScriptResult |
HtmlCheckBoxInput.doClickFireClickEvent(Event event)
This method implements the control onclick handler call during the click action.
|
ScriptResult |
HtmlElement.fireEvent(Event event)
Fires the event on the element.
|
| Modifier and Type | Class and Description |
|---|---|
class |
KeyboardEvent
JavaScript object representing a Keyboard Event.
|
class |
MessageEvent
A JavaScript object for MessageEvent.
|
class |
MouseEvent
JavaScript object representing a Mouse Event.
|
| Modifier and Type | Method and Description |
|---|---|
static Event |
Event.createPropertyChangeEvent(DomNode domNode,
String propertyName)
Creates a new Event with
TYPE_PROPERTY_CHANGE type. |
Event |
Window.getCurrentEvent()
Returns the current event (used internally regardless of the emulation mode).
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Window.dispatchEvent(Event event)
Dispatches an event into the event system (standards-conformant browsers only).
|
boolean |
ApplicationCache.dispatchEvent(Event event)
Dispatches an event into the event system (standards-conformant browsers only).
|
ScriptResult |
Window.executeEvent(Event event)
Executes the event on this object only (needed for instance for onload on (i)frame tags).
|
ScriptResult |
Window.executeEvent(Event event,
EventListenersContainer eventListenersContainer)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Executes the event on this window only. |
void |
Window.setCurrentEvent(Event event)
Sets the current event.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AnimationEvent
A JavaScript object for
AnimationEvent. |
| Modifier and Type | Method and Description |
|---|---|
ScriptResult |
Node.executeEvent(Event event)
Executes the event on this object only (needed for instance for onload on (i)frame tags).
|
ScriptResult |
Node.fireEvent(Event event)
Fires the event on the node with capturing and bubbling phase.
|
static ScriptResult |
Node.fireEvent(SimpleScriptable scriptable,
Event event)
Fires the event on the node with capturing and bubbling phase.
|
boolean |
EventNode.fireEvent(String type,
Event event)
Fires a specified event on this element (IE only).
|
| Modifier and Type | Class and Description |
|---|---|
class |
BeforeUnloadEvent
JavaScript object representing the BeforeUnloadEvent.
|
class |
ClipboardEvent
A JavaScript object for
ClipboardEvent. |
class |
CloseEvent
A JavaScript object for
CloseEvent. |
class |
CompositionEvent
A JavaScript object for
CompositionEvent. |
class |
CustomEvent
A JavaScript object for
CustomEvent. |
class |
DeviceLightEvent
A JavaScript object for
DeviceLightEvent. |
class |
DeviceMotionEvent
A JavaScript object for
DeviceMotionEvent. |
class |
DeviceOrientationEvent
A JavaScript object for
DeviceOrientationEvent. |
class |
DeviceProximityEvent
A JavaScript object for
DeviceProximityEvent. |
class |
DeviceStorageChangeEvent
A JavaScript object for
DeviceStorageChangeEvent. |
class |
DragEvent
A JavaScript object for
DragEvent. |
class |
ErrorEvent
A JavaScript object for
ErrorEvent. |
class |
FocusEvent
A JavaScript object for
FocusEvent. |
class |
GamepadEvent
A JavaScript object for
GamepadEvent. |
class |
HashChangeEvent
JavaScript object representing the HashChangeEvent.
|
class |
InputEvent
A JavaScript object for
InputEvent. |
class |
MouseScrollEvent
A JavaScript object for
MouseScrollEvent. |
class |
MouseWheelEvent
A JavaScript object for
MouseWheelEvent. |
class |
MutationEvent
JavaScript object representing a Mutation Event.
|
class |
PageTransitionEvent
A JavaScript object for
PageTransitionEvent. |
class |
PointerEvent
JavaScript object representing the PointerEvent.
|
class |
PopStateEvent
A JavaScript object for
PopStateEvent. |
class |
ProgressEvent
A JavaScript object for
ProgressEvent. |
class |
StorageEvent
A JavaScript object for
StorageEvent. |
class |
TimeEvent
A JavaScript object for
TimeEvent. |
class |
TouchEvent
A JavaScript object for
TouchEvent. |
class |
TransitionEvent
A JavaScript object for
TransitionEvent. |
class |
UIEvent
JavaScript object representing a UI event.
|
class |
UserProximityEvent
A JavaScript object for
UserProximityEvent. |
class |
WheelEvent
A JavaScript object for
WheelEvent. |
| Modifier and Type | Method and Description |
|---|---|
ScriptResult |
EventListenersContainer.executeBubblingListeners(Event event,
Object[] args,
Object[] propHandlerArgs)
Executes bubbling listeners.
|
ScriptResult |
EventListenersContainer.executeCapturingListeners(Event event,
Object[] args)
Executes capturing listeners.
|
ScriptResult |
EventListenersContainer.executeListeners(Event event,
Object[] args,
Object[] propHandlerArgs)
Executes listeners.
|
| Modifier and Type | Method and Description |
|---|---|
Event |
HTMLDocument.createEvent(String eventType)
Implementation of the
DocumentEvent interface's
DocumentEvent method. |
Event |
HTMLDocument.createEventObject()
Implementation of the createEventObject method supported by Internet Explorer.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
HTMLFormElement.dispatchEvent(Event event) |
boolean |
HTMLElement.dispatchEvent(Event event)
Dispatches an event into the event system (standards-conformant browsers only).
|
boolean |
HTMLDocument.dispatchEvent(Event event)
Dispatches an event into the event system (standards-conformant browsers only).
|
| Modifier and Type | Class and Description |
|---|---|
class |
AudioProcessingEvent
A JavaScript object for
AudioProcessingEvent. |
class |
MediaStreamEvent
A JavaScript object for
MediaStreamEvent. |
class |
OfflineAudioCompletionEvent
A JavaScript object for
OfflineAudioCompletionEvent. |
Copyright © 2002–2015 Gargoyle Software Inc.. All rights reserved.