happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
33 lines (29 loc) • 815 B
text/typescript
import BrowserWindow from '../window/BrowserWindow.js';
import Event from './Event.js';
import IUIEventInit from './IUIEventInit.js';
/**
*
*/
export default class UIEvent extends Event {
public static NONE = 0;
public static CAPTURING_PHASE = 1;
public static AT_TARGET = 2;
public static BUBBLING_PHASE = 3;
public readonly detail: number;
public readonly layerX: number = 0;
public readonly layerY: number = 0;
public readonly pageX: number = 0;
public readonly pageY: number = 0;
public readonly view: BrowserWindow | null;
/**
* Constructor.
*
* @param type Event type.
* @param [eventInit] Event init.
*/
constructor(type: string, eventInit: IUIEventInit | null = null) {
super(type, eventInit);
this.detail = eventInit?.detail ?? 0;
this.view = eventInit?.view ?? null;
}
}