aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/NodeFilter.webidl32
1 files changed, 16 insertions, 16 deletions
diff --git a/components/script/dom/webidls/NodeFilter.webidl b/components/script/dom/webidls/NodeFilter.webidl
index 5e213c066b6..2b0b1763c89 100644
--- a/components/script/dom/webidls/NodeFilter.webidl
+++ b/components/script/dom/webidls/NodeFilter.webidl
@@ -10,24 +10,24 @@
callback interface NodeFilter {
// Constants for acceptNode()
- // const unsigned short FILTER_ACCEPT = 1;
- // const unsigned short FILTER_REJECT = 2;
- // const unsigned short FILTER_SKIP = 3;
+ const unsigned short FILTER_ACCEPT = 1;
+ const unsigned short FILTER_REJECT = 2;
+ const unsigned short FILTER_SKIP = 3;
// Constants for whatToShow
- // const unsigned long SHOW_ALL = 0xFFFFFFFF;
- // const unsigned long SHOW_ELEMENT = 0x1;
- // const unsigned long SHOW_ATTRIBUTE = 0x2; // historical
- // const unsigned long SHOW_TEXT = 0x4;
- // const unsigned long SHOW_CDATA_SECTION = 0x8; // historical
- // const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical
- // const unsigned long SHOW_ENTITY = 0x20; // historical
- // const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40;
- // const unsigned long SHOW_COMMENT = 0x80;
- // const unsigned long SHOW_DOCUMENT = 0x100;
- // const unsigned long SHOW_DOCUMENT_TYPE = 0x200;
- // const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400;
- // const unsigned long SHOW_NOTATION = 0x800; // historical
+ const unsigned long SHOW_ALL = 0xFFFFFFFF;
+ const unsigned long SHOW_ELEMENT = 0x1;
+ const unsigned long SHOW_ATTRIBUTE = 0x2; // historical
+ const unsigned long SHOW_TEXT = 0x4;
+ const unsigned long SHOW_CDATA_SECTION = 0x8; // historical
+ const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical
+ const unsigned long SHOW_ENTITY = 0x20; // historical
+ const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40;
+ const unsigned long SHOW_COMMENT = 0x80;
+ const unsigned long SHOW_DOCUMENT = 0x100;
+ const unsigned long SHOW_DOCUMENT_TYPE = 0x200;
+ const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400;
+ const unsigned long SHOW_NOTATION = 0x800; // historical
unsigned short acceptNode(Node node);
};