Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,13 @@
"expectations": ["SKIP"],
"comment": "The test relies on the default page partition key do not contain the source origin. This is not the case for Firefox."
},
{
"testIdPattern": "[cookies.spec] Cookie specs Page.setCookie should set secure same-site cookies from a frame",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["chrome"],
"expectations": ["FAIL"],
"comment": "Failes with fieldtrial testing config in Chrome"
},
{
"testIdPattern": "[coverage.spec] *",
"platforms": ["darwin", "linux", "win32"],
Expand Down Expand Up @@ -1313,6 +1320,12 @@
"expectations": ["FAIL"],
"comment": "TODO: add a comment explaining why this expectation is required (include links to issues)"
},
{
"testIdPattern": "[cookies.spec] Cookie specs Page.setCookie should set secure same-site cookies from a frame",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["chrome", "chrome-headless-shell"],
"expectations": ["PASS"]
},
{
"testIdPattern": "[cookies.spec] Cookie specs Page.setCookie should set secure same-site cookies from a frame",
"platforms": ["darwin", "linux", "win32"],
Expand Down
3 changes: 1 addition & 2 deletions lib/PuppeteerSharp/ChromeLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ internal static string[] GetDefaultArgs(LaunchOptions options)

var chromiumArguments = new List<string>(
[
"--allow-pre-commit-input",
"--allow-pre-commit-input",
"--disable-background-networking",
"--disable-background-timer-throttling",
"--disable-backgrounding-occluded-windows",
Expand All @@ -74,7 +74,6 @@ internal static string[] GetDefaultArgs(LaunchOptions options)
"--disable-default-apps",
"--disable-dev-shm-usage",
"--disable-extensions",
"--disable-field-trial-config",
"--disable-hang-monitor",
"--disable-infobars",
"--disable-ipc-flooding-protection",
Expand Down