dom/plugins/test/mochitest/hangui_common.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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