Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / webidl / DownloadEvent.webidl
blobb64bd2984aafec3d38f2fb2eec76f837af62a043
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
7 [Constructor(DOMString type, optional DownloadEventInit eventInitDict),
8  Pref="dom.mozDownloads.enabled",
9  CheckPermissions="downloads"]
10 interface DownloadEvent : Event
12   readonly attribute DOMDownload? download;
15 dictionary DownloadEventInit : EventInit
17   DOMDownload? download = null;