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"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The nsIDOMProgressEvent is used in the media elements (<video> and <audio>
|
|
|
|
* to inform of the progress of the media download. It is currently undefined
|
|
|
|
* in the HTML5 specification. This implementation is a placeholder until
|
|
|
|
* the specification is complete and is compatible with the WebKit ProgressEvent.
|
|
|
|
*/
|
|
|
|
|
2012-08-04 00:44:00 -07:00
|
|
|
[scriptable, builtinclass, uuid(c5b7ec31-b846-4a9f-b81e-859e76a74f6b)]
|
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;
|
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
|
|
|
};
|