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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | function run_test() |
michael@0 | 5 | { |
michael@0 | 6 | const ROOTS = [ |
michael@0 | 7 | PlacesUtils.bookmarksMenuFolderId, |
michael@0 | 8 | PlacesUtils.toolbarFolderId, |
michael@0 | 9 | PlacesUtils.unfiledBookmarksFolderId, |
michael@0 | 10 | PlacesUtils.tagsFolderId, |
michael@0 | 11 | PlacesUtils.placesRootId |
michael@0 | 12 | ]; |
michael@0 | 13 | |
michael@0 | 14 | for (let root of ROOTS) { |
michael@0 | 15 | do_check_true(PlacesUtils.isRootItem(root)); |
michael@0 | 16 | |
michael@0 | 17 | try { |
michael@0 | 18 | PlacesUtils.bookmarks.removeItem(root); |
michael@0 | 19 | do_throw("Trying to remove a root should throw"); |
michael@0 | 20 | } catch (ex) {} |
michael@0 | 21 | |
michael@0 | 22 | try { |
michael@0 | 23 | PlacesUtils.bookmarks.moveItem(root, PlacesUtils.placesRootId, 0); |
michael@0 | 24 | do_throw("Trying to move a root should throw"); |
michael@0 | 25 | } catch (ex) {} |
michael@0 | 26 | |
michael@0 | 27 | try { |
michael@0 | 28 | PlacesUtils.bookmarks.removeFolderChildren(root); |
michael@0 | 29 | if (root == PlacesUtils.placesRootId) |
michael@0 | 30 | do_throw("Trying to remove children of the main root should throw"); |
michael@0 | 31 | } catch (ex) { |
michael@0 | 32 | if (root != PlacesUtils.placesRootId) |
michael@0 | 33 | do_throw("Trying to remove children of other roots should not throw"); |
michael@0 | 34 | } |
michael@0 | 35 | } |
michael@0 | 36 | } |