dom/interfaces/traversal/nsIDOMNodeFilter.idl

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/interfaces/traversal/nsIDOMNodeFilter.idl	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
     1.5 + *
     1.6 + * This Source Code Form is subject to the terms of the Mozilla Public
     1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.9 +
    1.10 +#include "domstubs.idl"
    1.11 +
    1.12 +[scriptable, function, uuid(e4723748-1dd1-11b2-8ee6-866a532a6237)]
    1.13 +// Introduced in DOM Level 2:
    1.14 +interface nsIDOMNodeFilter : nsISupports
    1.15 +{
    1.16 +  // Constants returned by acceptNode
    1.17 +  const short               FILTER_ACCEPT                  = 1;
    1.18 +  const short               FILTER_REJECT                  = 2;
    1.19 +  const short               FILTER_SKIP                    = 3;
    1.20 +
    1.21 +
    1.22 +  // Constants for whatToShow
    1.23 +  const unsigned long       SHOW_ALL                       = 0xFFFFFFFF;
    1.24 +  const unsigned long       SHOW_ELEMENT                   = 0x00000001;
    1.25 +  const unsigned long       SHOW_ATTRIBUTE                 = 0x00000002;
    1.26 +  const unsigned long       SHOW_TEXT                      = 0x00000004;
    1.27 +  const unsigned long       SHOW_CDATA_SECTION             = 0x00000008;
    1.28 +  const unsigned long       SHOW_ENTITY_REFERENCE          = 0x00000010;
    1.29 +  const unsigned long       SHOW_ENTITY                    = 0x00000020;
    1.30 +  const unsigned long       SHOW_PROCESSING_INSTRUCTION    = 0x00000040;
    1.31 +  const unsigned long       SHOW_COMMENT                   = 0x00000080;
    1.32 +  const unsigned long       SHOW_DOCUMENT                  = 0x00000100;
    1.33 +  const unsigned long       SHOW_DOCUMENT_TYPE             = 0x00000200;
    1.34 +  const unsigned long       SHOW_DOCUMENT_FRAGMENT         = 0x00000400;
    1.35 +  const unsigned long       SHOW_NOTATION                  = 0x00000800;
    1.36 +
    1.37 +  short              acceptNode(in nsIDOMNode n);
    1.38 +};

mercurial