Landing XSLT branch. Tracking bug is 155578, fixes bugs 46633, 54659, 73492, 70369, 85408, 90157, 130161, 109918, 150916 and 170097
* New scriptable interfaces to XSLT
* Make HTML-output create real html
* cleanup the XSLTProcessor class
Patch by sicking, pike and peterv
r=sicking/pike, sr=peterv, a=asa
2005-11-02 07:38:45 +00:00
|
|
|
/* -*- Mode: C++; 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/. */
|
Landing XSLT branch. Tracking bug is 155578, fixes bugs 46633, 54659, 73492, 70369, 85408, 90157, 130161, 109918, 150916 and 170097
* New scriptable interfaces to XSLT
* Make HTML-output create real html
* cleanup the XSLTProcessor class
Patch by sicking, pike and peterv
r=sicking/pike, sr=peterv, a=asa
2005-11-02 07:38:45 +00:00
|
|
|
|
|
|
|
#include "nsIException.idl"
|
2013-09-22 23:23:30 +00:00
|
|
|
|
|
|
|
interface nsIDOMNode;
|
Landing XSLT branch. Tracking bug is 155578, fixes bugs 46633, 54659, 73492, 70369, 85408, 90157, 130161, 109918, 150916 and 170097
* New scriptable interfaces to XSLT
* Make HTML-output create real html
* cleanup the XSLTProcessor class
Patch by sicking, pike and peterv
r=sicking/pike, sr=peterv, a=asa
2005-11-02 07:38:45 +00:00
|
|
|
|
|
|
|
[scriptable, uuid(e06dfaea-92d5-47f7-a800-c5f5404d8771)]
|
|
|
|
interface nsIXSLTException : nsIException {
|
|
|
|
/**
|
|
|
|
* The node in the stylesheet that triggered the exception.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIDOMNode styleNode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The context node, may be null
|
|
|
|
*/
|
|
|
|
readonly attribute nsIDOMNode sourceNode;
|
|
|
|
};
|