Currently, if an extension requests one or more optional permissions, and those permissions do not cause a prompt to be displayed, the framework will reject that request and not grant any permissions. This should be the opposite in that we should grant permission to those optional permissions event though no prompt is displayed. MozReview-Commit-ID: 6SeyFSv92Lo
12 lines
135 B
JavaScript
12 lines
135 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"extends": [
|
|
"plugin:mozilla/browser-test"
|
|
],
|
|
|
|
"env": {
|
|
"webextensions": true,
|
|
},
|
|
};
|