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.

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

mercurial