michael@0: /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsIVariant; michael@0: interface nsIArray; michael@0: michael@0: [scriptable, uuid(3f4cb2d0-5f7e-44a9-9f4f-370945f8db08)] michael@0: interface nsIDOMModalContentWindow : nsISupports michael@0: { michael@0: /** michael@0: * Readonly attribute containing an arbitrary JS value passed by the michael@0: * code that opened the modal content window. A security check is michael@0: * performed at access time, per spec. michael@0: */ michael@0: readonly attribute nsIVariant dialogArguments; michael@0: michael@0: /** michael@0: * The return value that will be returned to the function that michael@0: * opened the modal content window. michael@0: */ michael@0: attribute nsIVariant returnValue; michael@0: };