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.
1 VAR = val1 \
2 val2
4 VAR2 = val1space\
5 val2
7 VAR3 = val3 \\\
8 cont3
10 all: otarget test.target
11 test "$(VAR)" = "val1 val2 "
12 test "$(VAR2)" = "val1space val2"
13 test '$(VAR3)' = 'val3 \ cont3'
14 test "hello \
15 world" = "hello world"
16 test "hello" = \
17 "hello"
18 @echo TEST-PASS
20 otarget: ; test "hello\
21 world" = "helloworld"
23 test.target: %.target: ; test "hello\
24 world" = "helloworld"