feat(webkit): roll to r1875 (#24299)

Since
99ff08340f
search event is disabled in cocoa.

---------

Signed-off-by: Max Schmitt <max@schmitt.mx>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Playwright Service 2023-07-19 09:24:21 -07:00 committed by GitHub
parent 1288519915
commit 20fcd6b272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "1874",
"revision": "1875",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -71,8 +71,10 @@ it('safari-14-1', async ({ browser, browserName, platform, server, headless, isM
expected.inputtypes.time = false;
}
if (isMac && parseInt(os.release(), 10) > 20)
if (isMac && parseInt(os.release(), 10) > 20) {
expected.applicationcache = false;
expected.inputsearchevent = false;
}
expect(actual).toEqual(expected);
});
@ -129,8 +131,10 @@ it('mobile-safari-14-1', async ({ playwright, browser, browserName, platform, is
expected.inputtypes.time = false;
}
if (isMac && parseInt(os.release(), 10) > 20)
if (isMac && parseInt(os.release(), 10) > 20) {
expected.applicationcache = false;
expected.inputsearchevent = false;
}
expect(actual).toEqual(expected);
});