ProgressEvent.idl 425 B

123456789101112131415
  1. #import <DOM/Event.idl>
  2. interface ProgressEvent : Event {
  3. constructor(DOMString type, optional ProgressEventInit eventInitDict = {});
  4. readonly attribute boolean lengthComputable;
  5. readonly attribute unsigned long loaded;
  6. readonly attribute unsigned long total;
  7. };
  8. dictionary ProgressEventInit : EventInit {
  9. boolean lengthComputable = false;
  10. unsigned long loaded = 0;
  11. unsigned long total = 0;
  12. };