Sat, 03 Jan 2015 20:18:00 +0100
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.
| michael@0 | 1 | /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
| michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
| michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
| michael@0 | 4 | * You can obtain one at http://mozilla.org/MPL/2.0/. |
| michael@0 | 5 | * |
| michael@0 | 6 | * Interface for a client side storage. See |
| michael@0 | 7 | * http://dev.w3.org/html5/webstorage/#the-storage-event |
| michael@0 | 8 | * for more information. |
| michael@0 | 9 | * |
| michael@0 | 10 | * Event sent to a window when a storage area changes. |
| michael@0 | 11 | */ |
| michael@0 | 12 | interface Storage; |
| michael@0 | 13 | |
| michael@0 | 14 | [Constructor(DOMString type, optional StorageEventInit eventInitDict), HeaderFile="GeneratedEventClasses.h"] |
| michael@0 | 15 | interface StorageEvent : Event |
| michael@0 | 16 | { |
| michael@0 | 17 | readonly attribute DOMString? key; |
| michael@0 | 18 | readonly attribute DOMString? oldValue; |
| michael@0 | 19 | readonly attribute DOMString? newValue; |
| michael@0 | 20 | readonly attribute DOMString? url; |
| michael@0 | 21 | readonly attribute Storage? storageArea; |
| michael@0 | 22 | |
| michael@0 | 23 | // initStorageEvent is a Gecko specific deprecated method. |
| michael@0 | 24 | [Throws] |
| michael@0 | 25 | void initStorageEvent(DOMString type, |
| michael@0 | 26 | boolean canBubble, |
| michael@0 | 27 | boolean cancelable, |
| michael@0 | 28 | DOMString? key, |
| michael@0 | 29 | DOMString? oldValue, |
| michael@0 | 30 | DOMString? newValue, |
| michael@0 | 31 | DOMString? url, |
| michael@0 | 32 | Storage? storageArea); |
| michael@0 | 33 | }; |
| michael@0 | 34 | |
| michael@0 | 35 | dictionary StorageEventInit : EventInit |
| michael@0 | 36 | { |
| michael@0 | 37 | DOMString? key = null; |
| michael@0 | 38 | DOMString? oldValue = null; |
| michael@0 | 39 | DOMString? newValue = null; |
| michael@0 | 40 | DOMString url = ""; |
| michael@0 | 41 | Storage? storageArea = null; |
| michael@0 | 42 | }; |