21 lines
667 B
Plaintext
21 lines
667 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 "domstubs.idl"
|
|
|
|
/**
|
|
* The nsIDOMNode interface is the primary datatype for the entire
|
|
* Document Object Model.
|
|
* It represents a single node in the document tree.
|
|
*
|
|
* For more information on this interface please see
|
|
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
|
*/
|
|
|
|
[uuid(cc35b412-009b-46a3-9be0-76448f12548d)]
|
|
interface nsIDOMNode : nsISupports
|
|
{
|
|
};
|