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-02-24 15:15:01 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2011-08-20 17:53:33 +04:00
|
|
|
%{C++
|
|
|
|
class nsWrapperCache;
|
|
|
|
%}
|
|
|
|
|
|
|
|
[ptr] native nsWrapperCachePtr(nsWrapperCache);
|
|
|
|
|
2001-02-24 15:15:01 +03:00
|
|
|
typedef unsigned long long DOMTimeStamp;
|
2013-06-01 14:00:12 +04:00
|
|
|
typedef double DOMHighResTimeStamp;
|
2001-02-24 15:15:01 +03:00
|
|
|
|
|
|
|
// Core
|
|
|
|
interface nsIDOMAttr;
|
|
|
|
interface nsIDOMCDATASection;
|
|
|
|
interface nsIDOMCharacterData;
|
|
|
|
interface nsIDOMComment;
|
2013-03-13 01:31:53 +04:00
|
|
|
interface nsIDOMDOMImplementation;
|
2001-02-24 15:15:01 +03:00
|
|
|
interface nsIDOMDocument;
|
|
|
|
interface nsIDOMDocumentFragment;
|
|
|
|
interface nsIDOMDocumentType;
|
|
|
|
interface nsIDOMElement;
|
|
|
|
interface nsIDOMNode;
|
|
|
|
interface nsIDOMNodeList;
|
|
|
|
interface nsIDOMProcessingInstruction;
|
|
|
|
interface nsIDOMText;
|
2003-10-16 04:44:20 +04:00
|
|
|
interface nsIDOMDOMStringList;
|
2008-03-12 03:51:12 +03:00
|
|
|
interface nsIDOMClientRect;
|
|
|
|
interface nsIDOMClientRectList;
|
2003-01-15 02:05:52 +03:00
|
|
|
|
|
|
|
// Needed for raises() in our IDL
|
2001-02-24 15:15:01 +03:00
|
|
|
interface DOMException;
|
|
|
|
|
|
|
|
// Style Sheets
|
|
|
|
interface nsIDOMStyleSheetList;
|
|
|
|
interface nsIDOMStyleSheet;
|
|
|
|
interface nsIDOMMediaList;
|
|
|
|
|
|
|
|
// Base
|
|
|
|
interface nsIDOMWindow;
|
|
|
|
interface nsIDOMWindowCollection;
|
|
|
|
interface nsIDOMNavigator;
|
|
|
|
interface nsIDOMScreen;
|
|
|
|
|
|
|
|
// Events
|
|
|
|
interface nsIDOMEvent;
|
|
|
|
interface nsIDOMEventTarget;
|
|
|
|
interface nsIDOMEventListener;
|
|
|
|
|
|
|
|
// HTML
|
|
|
|
interface nsIDOMHTMLElement;
|
|
|
|
interface nsIDOMHTMLFormElement;
|
|
|
|
interface nsIDOMHTMLCollection;
|
2010-05-02 12:02:21 +04:00
|
|
|
interface nsIDOMHTMLHeadElement;
|
2001-02-24 15:15:01 +03:00
|
|
|
|
|
|
|
// CSS
|
|
|
|
interface nsIDOMCSSValue;
|
|
|
|
interface nsIDOMCSSPrimitiveValue;
|
|
|
|
interface nsIDOMCSSRule;
|
|
|
|
interface nsIDOMCSSRuleList;
|
2011-04-12 10:18:43 +04:00
|
|
|
interface nsIDOMMozCSSKeyframeRule;
|
2013-05-20 06:59:20 +04:00
|
|
|
interface nsIDOMCSSFontFeatureValuesRule;
|
2001-02-24 15:15:01 +03:00
|
|
|
interface nsIDOMCSSStyleSheet;
|
|
|
|
interface nsIDOMCSSStyleDeclaration;
|
|
|
|
interface nsIDOMCounter;
|
|
|
|
interface nsIDOMRect;
|
|
|
|
interface nsIDOMCSSStyleRule;
|
|
|
|
interface nsIDOMCSSStyleRuleCollection;
|
|
|
|
interface nsIDOMHTMLTableCaptionElement;
|
|
|
|
|
|
|
|
// Range
|
|
|
|
interface nsIDOMRange;
|
|
|
|
|
|
|
|
// Crypto
|
|
|
|
interface nsIDOMCRMFObject;
|
|
|
|
interface nsIDOMCrypto;
|
2009-05-27 17:12:28 +04:00
|
|
|
interface nsIDOMPkcs11;
|
2011-06-16 10:31:36 +04:00
|
|
|
|
|
|
|
// Used font face (for inspector)
|
|
|
|
interface nsIDOMFontFace;
|
|
|
|
interface nsIDOMFontFaceList;
|