WebGLContextEvent.idl 366 B

123456789101112
  1. #import <DOM/Event.idl>
  2. // https://registry.khronos.org/webgl/specs/latest/1.0/#5.15
  3. [Exposed=(Window,Worker)]
  4. interface WebGLContextEvent : Event {
  5. constructor(DOMString type, optional WebGLContextEventInit eventInit = {});
  6. readonly attribute DOMString statusMessage;
  7. };
  8. dictionary WebGLContextEventInit : EventInit {
  9. DOMString statusMessage = "";
  10. };