dom/plugins/test/mochitest/hangui_common.js

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 // Plugin Hang UI constants
     2 const HANGUIOP_NOTHING = 0;
     3 const HANGUIOP_CANCEL = 1;
     4 const HANGUIOP_COMMAND = 2;
     5 const IDC_CONTINUE = 1001;
     6 const IDC_STOP = 1002;
     7 const IDC_NOFUTURE = 1003;
     9 // Windows constants
    10 const WM_CLOSE = 0x0010;
    11 const WM_COMMAND = 0x0111;
    12 const BM_GETCHECK = 0x00F0;
    13 const BM_SETCHECK = 0x00F1;
    14 const BN_CLICKED = 0;
    15 const BST_CHECKED = 1;
    17 // Test-specific constants
    18 const EPSILON_MS = 1000;
    19 const STALL_DURATION = 2;

mercurial