2006-07-13 14:21:53 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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/. */
|
2005-11-02 07:42:39 +00:00
|
|
|
|
2013-09-22 23:23:30 +00:00
|
|
|
#include "nsISupports.idl"
|
2005-11-02 07:42:39 +00:00
|
|
|
|
2013-09-22 23:23:30 +00:00
|
|
|
interface nsIDOMNode;
|
2006-07-13 14:21:53 +00:00
|
|
|
interface txINodeSet;
|
2005-11-02 07:42:39 +00:00
|
|
|
|
2006-07-13 14:21:53 +00:00
|
|
|
[scriptable, uuid(0ecbb00c-6a78-11d9-9791-000a95dc234c)]
|
|
|
|
interface txIFunctionEvaluationContext : nsISupports
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
readonly attribute uint32_t position;
|
|
|
|
readonly attribute uint32_t size;
|
2006-07-13 14:21:53 +00:00
|
|
|
readonly attribute nsIDOMNode contextNode;
|
|
|
|
readonly attribute nsISupports state;
|
2005-11-02 07:42:39 +00:00
|
|
|
};
|