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:28:46 +03:00
|
|
|
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2013-01-24 21:45:50 +04:00
|
|
|
[scriptable, uuid(af628000-e3fa-40d2-9118-fbaa9f3ec6b9)]
|
2001-02-24 15:28:46 +03:00
|
|
|
interface nsIDOMDocumentXBL : nsISupports
|
|
|
|
{
|
2009-10-12 06:45:00 +04:00
|
|
|
/**
|
2010-10-12 16:26:47 +04:00
|
|
|
* See the MDC documentation for what these methods do.
|
2009-10-12 06:45:00 +04:00
|
|
|
*/
|
2001-02-24 15:28:46 +03:00
|
|
|
nsIDOMNodeList getAnonymousNodes(in nsIDOMElement elt);
|
|
|
|
nsIDOMElement getAnonymousElementByAttribute(in nsIDOMElement elt,
|
|
|
|
in DOMString attrName,
|
|
|
|
in DOMString attrValue);
|
|
|
|
|
|
|
|
nsIDOMElement getBindingParent(in nsIDOMNode node);
|
2007-06-13 01:56:06 +04:00
|
|
|
void loadBindingDocument(in DOMString documentURL);
|
2001-02-24 15:28:46 +03:00
|
|
|
};
|