| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 // https://dom.spec.whatwg.org/#interface-nodefilter | 21 // https://dom.spec.whatwg.org/#interface-nodefilter |
| 22 | 22 |
| 23 // FIXME: NodeFilter should be a callback interface. crbug.com/462946 | 23 // FIXME: NodeFilter should be a callback interface. crbug.com/462946 |
| 24 [ | 24 [ |
| 25 DependentLifetime, | 25 DependentLifetime, |
| 26 GarbageCollected, | |
| 27 ] interface NodeFilter { | 26 ] interface NodeFilter { |
| 28 // Constants for acceptNode() | 27 // Constants for acceptNode() |
| 29 const unsigned short FILTER_ACCEPT = 1; | 28 const unsigned short FILTER_ACCEPT = 1; |
| 30 const unsigned short FILTER_REJECT = 2; | 29 const unsigned short FILTER_REJECT = 2; |
| 31 const unsigned short FILTER_SKIP = 3; | 30 const unsigned short FILTER_SKIP = 3; |
| 32 | 31 |
| 33 // Constants for whatToShow | 32 // Constants for whatToShow |
| 34 const unsigned long SHOW_ALL = 0xFFFFFFFF; | 33 const unsigned long SHOW_ALL = 0xFFFFFFFF; |
| 35 const unsigned long SHOW_ELEMENT = 0x1; | 34 const unsigned long SHOW_ELEMENT = 0x1; |
| 36 const unsigned long SHOW_ATTRIBUTE = 0x2; // historical | 35 const unsigned long SHOW_ATTRIBUTE = 0x2; // historical |
| 37 const unsigned long SHOW_TEXT = 0x4; | 36 const unsigned long SHOW_TEXT = 0x4; |
| 38 const unsigned long SHOW_CDATA_SECTION = 0x8; // historical | 37 const unsigned long SHOW_CDATA_SECTION = 0x8; // historical |
| 39 const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical | 38 const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical |
| 40 const unsigned long SHOW_ENTITY = 0x20; // historical | 39 const unsigned long SHOW_ENTITY = 0x20; // historical |
| 41 const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40; | 40 const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40; |
| 42 const unsigned long SHOW_COMMENT = 0x80; | 41 const unsigned long SHOW_COMMENT = 0x80; |
| 43 const unsigned long SHOW_DOCUMENT = 0x100; | 42 const unsigned long SHOW_DOCUMENT = 0x100; |
| 44 const unsigned long SHOW_DOCUMENT_TYPE = 0x200; | 43 const unsigned long SHOW_DOCUMENT_TYPE = 0x200; |
| 45 const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400; | 44 const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400; |
| 46 const unsigned long SHOW_NOTATION = 0x800; // historical | 45 const unsigned long SHOW_NOTATION = 0x800; // historical |
| 47 | 46 |
| 48 // FIXME: The node argument should not be optional. | 47 // FIXME: The node argument should not be optional. |
| 49 [RaisesException, LegacyInterfaceTypeChecking] unsigned short acceptNode([De
fault=Undefined] optional Node node); | 48 [RaisesException, LegacyInterfaceTypeChecking] unsigned short acceptNode([De
fault=Undefined] optional Node node); |
| 50 }; | 49 }; |
| OLD | NEW |