From 96965cfbe9c8edd3c9b50eaba4e8c8c1041c2690 Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Sat, 12 Aug 2023 10:17:07 -0700 Subject: [PATCH] feat(webkit): roll to r1885 (#26443) Signed-off-by: Max Schmitt Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Max Schmitt --- packages/playwright-core/browsers.json | 2 +- tests/library/har.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index c7379c84e2..0ec3770aec 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -39,7 +39,7 @@ }, { "name": "webkit", - "revision": "1884", + "revision": "1885", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/tests/library/har.spec.ts b/tests/library/har.spec.ts index 6756adf2ff..ed6d16b8cf 100644 --- a/tests/library/har.spec.ts +++ b/tests/library/har.spec.ts @@ -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