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.

     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