2008-07-09 01:22:20 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-07-09 01:22:20 -07:00
|
|
|
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
|
|
|
|
/**
|
2012-09-06 00:14:49 -07:00
|
|
|
* ProgressEvent can be used for measuring progress.
|
2008-07-09 01:22:20 -07:00
|
|
|
*/
|
|
|
|
|
2012-12-22 00:18:08 -08:00
|
|
|
[scriptable, builtinclass, uuid(e0682338-4c3f-4d3a-9487-d7492ea76335)]
|
2008-07-09 01:22:20 -07:00
|
|
|
interface nsIDOMProgressEvent : nsIDOMEvent
|
|
|
|
{
|
|
|
|
readonly attribute boolean lengthComputable;
|
2008-10-21 02:06:53 -07:00
|
|
|
readonly attribute unsigned long long loaded;
|
|
|
|
readonly attribute unsigned long long total;
|
2013-02-22 16:14:35 -08:00
|
|
|
[noscript]
|
2008-07-09 01:22:20 -07:00
|
|
|
void initProgressEvent(in DOMString typeArg,
|
|
|
|
in boolean canBubbleArg,
|
|
|
|
in boolean cancelableArg,
|
|
|
|
in boolean lengthComputableArg,
|
2008-10-21 02:06:53 -07:00
|
|
|
in unsigned long long loadedArg,
|
|
|
|
in unsigned long long totalArg);
|
2008-07-09 01:22:20 -07:00
|
|
|
};
|
2012-09-06 00:14:49 -07:00
|
|
|
|
|
|
|
dictionary ProgressEventInit : EventInit {
|
|
|
|
boolean lengthComputable;
|
|
|
|
unsigned long long loaded;
|
|
|
|
unsigned long long total;
|
|
|
|
};
|