25 lines
938 B
Plaintext
25 lines
938 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#include "nsIDOMNode.idl"
|
|
|
|
/**
|
|
* The nsIDOMDocument interface represents the entire HTML or XML document.
|
|
* Conceptually, it is the root of the document tree, and provides the
|
|
* primary access to the document's data.
|
|
* Since elements, text nodes, comments, processing instructions, etc.
|
|
* cannot exist outside the context of a Document, the nsIDOMDocument
|
|
* interface also contains the factory methods needed to create these
|
|
* objects.
|
|
*
|
|
* For more information on this interface please see
|
|
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
|
*/
|
|
|
|
[uuid(b15fa0f4-97c1-4388-af62-2ceff7a89bdf)]
|
|
interface nsIDOMDocument : nsIDOMNode
|
|
{
|
|
};
|