1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/webidl/NodeFilter.webidl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 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 file, 1.7 + * You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + * 1.9 + * The origin of this IDL file is 1.10 + * http://dom.spec.whatwg.org/#interface-nodefilter 1.11 + */ 1.12 + 1.13 +callback interface NodeFilter { 1.14 + // Constants for acceptNode() 1.15 + const unsigned short FILTER_ACCEPT = 1; 1.16 + const unsigned short FILTER_REJECT = 2; 1.17 + const unsigned short FILTER_SKIP = 3; 1.18 + 1.19 + // Constants for whatToShow 1.20 + const unsigned long SHOW_ALL = 0xFFFFFFFF; 1.21 + const unsigned long SHOW_ELEMENT = 0x1; 1.22 + const unsigned long SHOW_ATTRIBUTE = 0x2; // historical 1.23 + const unsigned long SHOW_TEXT = 0x4; 1.24 + const unsigned long SHOW_CDATA_SECTION = 0x8; // historical 1.25 + const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical 1.26 + const unsigned long SHOW_ENTITY = 0x20; // historical 1.27 + const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40; 1.28 + const unsigned long SHOW_COMMENT = 0x80; 1.29 + const unsigned long SHOW_DOCUMENT = 0x100; 1.30 + const unsigned long SHOW_DOCUMENT_TYPE = 0x200; 1.31 + const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400; 1.32 + const unsigned long SHOW_NOTATION = 0x800; // historical 1.33 + 1.34 + unsigned short acceptNode(Node node); 1.35 +};