content/test/unit/nodelist_data_2.xul

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.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <!DOCTYPE window [
michael@0 3 <!ENTITY fooSet '
michael@0 4 <addOrRemove foo:foo="foo"/>
michael@0 5 <addOrRemove foo:foo="bar"/>
michael@0 6 <addOrRemove foo:bar="foo"/>
michael@0 7 <addOrRemove foo:bar="bar"/>
michael@0 8 <addOrRemove foo:foo="foo" foo:bar="bar"/>
michael@0 9 <addOrRemove foo2:foo="foo"/>
michael@0 10 <addOrRemove foo="foo"/>
michael@0 11 <addOrRemove foo="bar"/>
michael@0 12 <addOrRemove bar="bar" foo="foo"/>
michael@0 13 '>
michael@0 14 ]>
michael@0 15 <window
michael@0 16 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 17 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 18 xmlns:foo="foo"
michael@0 19 xmlns:foo2="foo"
michael@0 20 xmlns:bar="bar"
michael@0 21 >
michael@0 22 <vbox id="boxes">
michael@0 23 <groupbox id="master1" foo:foo="bar">
michael@0 24 &fooSet;
michael@0 25 <groupbox foo:foo="foo">
michael@0 26 &fooSet;
michael@0 27 </groupbox>
michael@0 28 </groupbox>
michael@0 29 <groupbox id="master2" foo:foo="foo">
michael@0 30 &fooSet;
michael@0 31 <groupbox foo:foo="bar">
michael@0 32 &fooSet;
michael@0 33 </groupbox>
michael@0 34 </groupbox>
michael@0 35 <groupbox id="master3">
michael@0 36 &fooSet;
michael@0 37 <groupbox foo2:foo="foo">
michael@0 38 &fooSet;
michael@0 39 </groupbox>
michael@0 40 </groupbox>
michael@0 41 <groupbox id="external">
michael@0 42 &fooSet;
michael@0 43 </groupbox>
michael@0 44 </vbox>
michael@0 45 </window>

mercurial