Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2001-01-21 12:21:24 +03:00
|
|
|
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2003-01-15 02:05:52 +03:00
|
|
|
/**
|
|
|
|
* The nsIDOMMediaList interface is a datatype for a list of media
|
|
|
|
* types in the Document Object Model.
|
|
|
|
*
|
|
|
|
* For more information on this interface please see
|
|
|
|
* http://www.w3.org/TR/DOM-Level-2-Style
|
|
|
|
*/
|
|
|
|
|
2014-05-09 00:45:36 +04:00
|
|
|
[uuid(9b0c2ed7-111c-4824-adf9-ef0da6dad371)]
|
2001-01-21 12:21:24 +03:00
|
|
|
interface nsIDOMMediaList : nsISupports
|
|
|
|
{
|
|
|
|
attribute DOMString mediaText;
|
|
|
|
// raises(DOMException) on setting
|
|
|
|
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
DOMString item(in unsigned long index);
|
2001-09-05 04:00:18 +04:00
|
|
|
void deleteMedium(in DOMString oldMedium)
|
2001-01-21 12:21:24 +03:00
|
|
|
raises(DOMException);
|
2001-09-05 04:00:18 +04:00
|
|
|
void appendMedium(in DOMString newMedium)
|
2001-01-21 12:21:24 +03:00
|
|
|
raises(DOMException);
|
|
|
|
};
|