diff --git a/packages/puppeteer-core/src/node/FirefoxLauncher.ts b/packages/puppeteer-core/src/node/FirefoxLauncher.ts index 4d5dad639a7a4..cd610d2451648 100644 --- a/packages/puppeteer-core/src/node/FirefoxLauncher.ts +++ b/packages/puppeteer-core/src/node/FirefoxLauncher.ts @@ -119,11 +119,14 @@ export class FirefoxLauncher extends ProductLauncher { ? { // Temporarily force disable BFCache in parent (https://bit.ly/bug-1732263) 'fission.bfcacheInParent': false, - - // Force all web content to use a single content process - 'fission.webContentIsolationStrategy': 0, } : {}), + // Force all web content to use a single content process. TODO: remove + // this once Firefox supports mouse event dispatch from the main frame + // context. Once this happens, webContentIsolationStrategy should only + // be set for CDP. See + // https://bugzilla.mozilla.org/show_bug.cgi?id=1773393 + 'fission.webContentIsolationStrategy': 0, }, }); diff --git a/test/TestExpectations.json b/test/TestExpectations.json index f5447806ae222..b56c35c90d3f3 100644 --- a/test/TestExpectations.json +++ b/test/TestExpectations.json @@ -1497,7 +1497,7 @@ "testIdPattern": "[click.spec] Page.click should click the button with fixed position inside an iframe", "platforms": ["darwin", "linux", "win32"], "parameters": ["firefox", "webDriverBiDi"], - "expectations": ["FAIL"] + "expectations": ["PASS"] }, { "testIdPattern": "[click.spec] Page.click should click the button with fixed position inside an iframe", @@ -1893,7 +1893,7 @@ "testIdPattern": "[frame.spec] Frame specs Frame Management should report different frame instance when frame re-attaches", "platforms": ["darwin", "linux", "win32"], "parameters": ["firefox", "webDriverBiDi"], - "expectations": ["FAIL"] + "expectations": ["PASS"] }, { "testIdPattern": "[frame.spec] Frame specs Frame Management should report frame from-inside shadow DOM", @@ -1959,7 +1959,7 @@ "testIdPattern": "[frame.spec] Frame specs Frame.evaluate should throw for detached frames", "platforms": ["darwin", "linux", "win32"], "parameters": ["firefox", "webDriverBiDi"], - "expectations": ["FAIL"] + "expectations": ["PASS"] }, { "testIdPattern": "[frame.spec] Frame specs Frame.executionContext should work", @@ -2769,7 +2769,7 @@ "testIdPattern": "[oopif.spec] OOPIF clickablePoint, boundingBox, boxModel should work for elements inside OOPIFs", "platforms": ["darwin", "linux", "win32"], "parameters": ["firefox", "webDriverBiDi"], - "expectations": ["FAIL"] + "expectations": ["PASS"] }, { "testIdPattern": "[oopif.spec] OOPIF should keep track of a frames OOP state", @@ -2781,7 +2781,7 @@ "testIdPattern": "[oopif.spec] OOPIF should provide access to elements", "platforms": ["darwin", "linux", "win32"], "parameters": ["firefox", "webDriverBiDi"], - "expectations": ["FAIL"] + "expectations": ["PASS"] }, { "testIdPattern": "[oopif.spec] OOPIF should support lazy OOP frames",