Skip to content

Commit

Permalink
feat(webkit): roll to r1885 (#26443)
Browse files Browse the repository at this point in the history
Signed-off-by: Max Schmitt <[email protected]>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Max Schmitt <[email protected]>
  • Loading branch information
3 people authored Aug 12, 2023
1 parent c888e29 commit 96965cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "1884",
"revision": "1885",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",
Expand Down
2 changes: 1 addition & 1 deletion tests/library/har.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ it('should return security details directly from response', async ({ contextFact
const response = await page.goto(httpsServer.EMPTY_PAGE);
const securityDetails = await response.securityDetails();
if (browserName === 'webkit' && platform === 'win32')
expect({ ...securityDetails, protocol: undefined }).toEqual({ subjectName: 'playwright-test', validFrom: 1691708270, validTo: -1 });
expect({ ...securityDetails, protocol: undefined }).toEqual({ subjectName: 'playwright-test', validFrom: 1691708270, validTo: 2007068270 });
else if (browserName === 'webkit')
expect(securityDetails).toEqual({ protocol: 'TLS 1.3', subjectName: 'playwright-test', validFrom: 1691708270, validTo: 2007068270 });
else
Expand Down

0 comments on commit 96965cf

Please sign in to comment.