Auto merge of #5672 - ChrisParis:nodefilter, r=jdm

This commit is contained in:
bors-servo 2015-04-13 17:18:40 -05:00
commit b9b4389628
5 changed files with 2236 additions and 166 deletions

View file

@ -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);
};