mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-05 19:04:43 +03:00
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:
parent
1288519915
commit
20fcd6b272
@ -39,7 +39,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1874",
|
||||
"revision": "1875",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446",
|
||||
|
@ -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);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user