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 17:42:36 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-09 11:39:07 +00:00
|
|
|
|
2011-09-20 05:08:00 +00:00
|
|
|
#include "nsIDOMCharacterData.idl"
|
2001-02-09 11:39:07 +00:00
|
|
|
|
2001-11-27 19:18:00 +00:00
|
|
|
/**
|
|
|
|
* The nsIDOMProcessingInstruction interface represents a
|
|
|
|
* "processing instruction", used in XML as a way to keep processor-specific
|
|
|
|
* information in the text of the document.
|
|
|
|
*
|
|
|
|
* For more information on this interface please see
|
2011-09-20 05:08:00 +00:00
|
|
|
* http://www.w3.org/TR/DOM-Level-2-Core/ and
|
|
|
|
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
2001-11-27 19:18:00 +00:00
|
|
|
*/
|
|
|
|
|
2014-05-08 20:45:36 +00:00
|
|
|
[uuid(91f2e856-5596-44d6-b396-0a02d8ec28c6)]
|
2011-09-20 05:08:00 +00:00
|
|
|
interface nsIDOMProcessingInstruction : nsIDOMCharacterData
|
2001-02-09 11:39:07 +00:00
|
|
|
{
|
|
|
|
readonly attribute DOMString target;
|
|
|
|
};
|