Revert "Revert "feat(firefox): roll Firefox to r1011 (#452)""
This reverts commit a738af4603.
This commit is contained in:
parent
63f16a9ef8
commit
7a7ff9e994
|
|
@ -9,7 +9,7 @@
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"playwright": {
|
"playwright": {
|
||||||
"chromium_revision": "724623",
|
"chromium_revision": "724623",
|
||||||
"firefox_revision": "1009",
|
"firefox_revision": "1011",
|
||||||
"webkit_revision": "1082"
|
"webkit_revision": "1082"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -439,6 +439,8 @@ const DEFAULT_PREFERENCES = {
|
||||||
// Ensure blocklist updates do not hit the network
|
// Ensure blocklist updates do not hit the network
|
||||||
'services.settings.server': `http://${DUMMY_UMA_SERVER}/dummy/blocklist/`,
|
'services.settings.server': `http://${DUMMY_UMA_SERVER}/dummy/blocklist/`,
|
||||||
|
|
||||||
|
'browser.tabs.documentchannel': false,
|
||||||
|
|
||||||
// Do not automatically fill sign-in forms with known usernames and
|
// Do not automatically fill sign-in forms with known usernames and
|
||||||
// passwords
|
// passwords
|
||||||
'signon.autofillForms': false,
|
'signon.autofillForms': false,
|
||||||
|
|
|
||||||
|
|
@ -243,10 +243,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF
|
||||||
page.evaluate(async url => fetch(url).catch(e => {}), server.EMPTY_PAGE)
|
page.evaluate(async url => fetch(url).catch(e => {}), server.EMPTY_PAGE)
|
||||||
]);
|
]);
|
||||||
expect(message.text()).toContain('Access-Control-Allow-Origin');
|
expect(message.text()).toContain('Access-Control-Allow-Origin');
|
||||||
if (CHROME || WEBKIT)
|
expect(message.type()).toEqual('error');
|
||||||
expect(message.type()).toEqual('error');
|
|
||||||
else
|
|
||||||
expect(message.type()).toEqual('warn');
|
|
||||||
});
|
});
|
||||||
it('should have location for console API calls', async({page, server}) => {
|
it('should have location for console API calls', async({page, server}) => {
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue