[Exposed=Window]
interface HTMLCameraElement : HTMLElement {
  [HTMLConstructor] constructor();

  readonly attribute MediaStreamTrack? track;
  readonly attribute DOMException? error;

  attribute EventHandler ontrack;
  attribute EventHandler oncancel;
  attribute EventHandler onerror;
};

