mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fix: disable IsolateSandboxedIframes trial to prevent flakiness (#12381)
This commit is contained in:
parent
f7e44b9742
commit
461a8ff92f
@ -176,10 +176,15 @@ export class ChromeLauncher extends ProductLauncher {
|
||||
'AcceptCHFrame',
|
||||
'MediaRouter',
|
||||
'OptimizationHints',
|
||||
// https://crbug.com/1492053
|
||||
turnOnExperimentalFeaturesForTesting
|
||||
? ''
|
||||
: 'ProcessPerSiteUpToMainFrameThreshold',
|
||||
|
||||
...(turnOnExperimentalFeaturesForTesting
|
||||
? []
|
||||
: [
|
||||
// https://crbug.com/1492053
|
||||
'ProcessPerSiteUpToMainFrameThreshold',
|
||||
// https://github.com/puppeteer/puppeteer/issues/10715
|
||||
'IsolateSandboxedIframes',
|
||||
]),
|
||||
...userDisabledFeatures,
|
||||
].filter(feature => {
|
||||
return feature !== '';
|
||||
|
@ -1442,13 +1442,6 @@
|
||||
"expectations": ["FAIL"],
|
||||
"comment": "TODO: add a comment explaining why this expectation is required (include links to issues)"
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[elementhandle.spec] ElementHandle specs ElementHandle.clickablePoint should work for iframes",
|
||||
"platforms": ["linux", "win32", "win32"],
|
||||
"parameters": ["cdp", "chrome"],
|
||||
"expectations": ["FAIL", "PASS"],
|
||||
"comment": "Flaky with fieldtrial testing config"
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[elementhandle.spec] ElementHandle specs ElementHandle.isIntersectingViewport should work",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
|
Loading…
Reference in New Issue
Block a user