docshell/test/file_bug669671.sjs

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 function handleRequest(request, response)
     2 {
     3   var count = parseInt(getState('count'));
     4   if (!count || request.queryString == 'countreset')
     5     count = 0;
     7   setState('count', count + 1 + '');
     9   response.setHeader('Content-Type', 'text/html', false);
    10   response.setHeader('Cache-Control', 'max-age=0');
    11   response.write('<html><body onload="opener.onChildLoad()" ' +
    12                  'onunload="parseInt(\'0\')">' +
    13                  count + '</body></html>');
    14 }

mercurial