summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebGL/WebGLContextEvent.idl
blob: fc1493c2c4904499b403a738c488e4a844128823 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <DOM/Event.idl>

[Exposed=(Window,Worker), UseNewAKString]
interface WebGLContextEvent : Event {
    constructor(DOMString type, optional WebGLContextEventInit eventInit = {});
    readonly attribute DOMString statusMessage;
};

dictionary WebGLContextEventInit : EventInit {
    DOMString statusMessage = "";
};