1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/nsIXSLTProcessorPrivate.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#include "nsISupports.idl" 1.10 + 1.11 +[scriptable, uuid(b8d727f7-67f4-4dc1-a318-ec0c87280816)] 1.12 +interface nsIXSLTProcessorPrivate : nsISupports 1.13 +{ 1.14 + /** 1.15 + * Disables all loading of external documents, such as from 1.16 + * <xsl:import> and document() 1.17 + * Defaults to off and is *not* reset by calls to reset() 1.18 + */ 1.19 + const unsigned long DISABLE_ALL_LOADS = 1; 1.20 + 1.21 + /** 1.22 + * Flags for this processor. Defaults to 0. See individual flags above 1.23 + * for documentation for effect of reset() 1.24 + */ 1.25 + attribute unsigned long flags; 1.26 +};