dom/webidl/NodeFilter.webidl

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
     4  * You can obtain one at http://mozilla.org/MPL/2.0/.
     5  *
     6  * The origin of this IDL file is
     7  * http://dom.spec.whatwg.org/#interface-nodefilter
     8  */
    10 callback interface NodeFilter {
    11   // Constants for acceptNode()
    12   const unsigned short FILTER_ACCEPT = 1;
    13   const unsigned short FILTER_REJECT = 2;
    14   const unsigned short FILTER_SKIP = 3;
    16   // Constants for whatToShow
    17   const unsigned long SHOW_ALL = 0xFFFFFFFF;
    18   const unsigned long SHOW_ELEMENT = 0x1;
    19   const unsigned long SHOW_ATTRIBUTE = 0x2; // historical
    20   const unsigned long SHOW_TEXT = 0x4;
    21   const unsigned long SHOW_CDATA_SECTION = 0x8; // historical
    22   const unsigned long SHOW_ENTITY_REFERENCE = 0x10; // historical
    23   const unsigned long SHOW_ENTITY = 0x20; // historical
    24   const unsigned long SHOW_PROCESSING_INSTRUCTION = 0x40;
    25   const unsigned long SHOW_COMMENT = 0x80;
    26   const unsigned long SHOW_DOCUMENT = 0x100;
    27   const unsigned long SHOW_DOCUMENT_TYPE = 0x200;
    28   const unsigned long SHOW_DOCUMENT_FRAGMENT = 0x400;
    29   const unsigned long SHOW_NOTATION = 0x800; // historical
    31   unsigned short acceptNode(Node node);
    32 };

mercurial