diff options
Diffstat (limited to 'dom/plugins/test/mochitest/hangui_common.js')
-rw-r--r-- | dom/plugins/test/mochitest/hangui_common.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dom/plugins/test/mochitest/hangui_common.js b/dom/plugins/test/mochitest/hangui_common.js new file mode 100644 index 0000000000..cf0d049f20 --- /dev/null +++ b/dom/plugins/test/mochitest/hangui_common.js @@ -0,0 +1,20 @@ +// Plugin Hang UI constants +const HANGUIOP_NOTHING = 0; +const HANGUIOP_CANCEL = 1; +const HANGUIOP_COMMAND = 2; +const IDC_CONTINUE = 1001; +const IDC_STOP = 1002; +const IDC_NOFUTURE = 1003; + +// Windows constants +const WM_CLOSE = 0x0010; +const WM_COMMAND = 0x0111; +const BM_GETCHECK = 0x00F0; +const BM_SETCHECK = 0x00F1; +const BN_CLICKED = 0; +const BST_CHECKED = 1; + +// Test-specific constants +const EPSILON_MS = 1000; +const STALL_DURATION = 2; + |