mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8872900b27
This defines a few additional globals but also turns on the browser environment for everything in browser and toolkit. This may lead to some false negatives but we have lots of code that runs in a browser context so in the name of getting rules turned on I think this is a useful step. MozReview-Commit-ID: BdWouZGK6d
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
// Parent config file for all browser-chrome files.
|
|
{
|
|
"rules": {
|
|
"mozilla/import-headjs-globals": 1,
|
|
"mozilla/import-browserjs-globals": 1,
|
|
},
|
|
|
|
"env": {
|
|
"browser": true,
|
|
},
|
|
|
|
// All globals made available in the test environment.
|
|
"globals": {
|
|
"add_task": false,
|
|
"Assert": false,
|
|
"BrowserTestUtils": false,
|
|
"content": false,
|
|
"ContentTask": false,
|
|
"ContentTaskUtils": false,
|
|
"EventUtils": false,
|
|
"executeSoon": false,
|
|
"expectUncaughtException": false,
|
|
"export_assertions": false,
|
|
"extractJarToTmp": false,
|
|
"finish": false,
|
|
"getJar": false,
|
|
"getRootDirectory": false,
|
|
"getTestFilePath": false,
|
|
"gTestPath": false,
|
|
"info": false,
|
|
"is": false,
|
|
"isnot": false,
|
|
"ok": false,
|
|
"registerCleanupFunction": false,
|
|
"requestLongerTimeout": false,
|
|
"SimpleTest": false,
|
|
"SpecialPowers": false,
|
|
"thisTestLeaksUncaughtRejectionsAndShouldBeFixed": false,
|
|
"todo": false,
|
|
"todo_is": false,
|
|
"todo_isnot": false,
|
|
"waitForClipboard": false,
|
|
"waitForExplicitFinish": false,
|
|
"waitForFocus": false,
|
|
}
|
|
}
|