mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-10 12:57:42 +03:00
feat(webkit): roll WebKit to r1898 (#26738)
This commit is contained in:
parent
39f8f2ed8d
commit
5c72cbdb23
@ -39,7 +39,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1893",
|
||||
"revision": "1898",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446",
|
||||
|
@ -165,9 +165,9 @@ export function source() {
|
||||
|
||||
if (isError(value)) {
|
||||
const error = value;
|
||||
if ('captureStackTrace' in globalThis.Error) {
|
||||
if (error.stack?.startsWith(error.name + ': ' + error.message)) {
|
||||
// v8
|
||||
return error.stack || '';
|
||||
return error.stack;
|
||||
}
|
||||
return `${error.name}: ${error.message}\n${error.stack}`;
|
||||
}
|
||||
|
@ -53,7 +53,6 @@ it('page.goBack should work with HistoryAPI', async ({ page, server }) => {
|
||||
});
|
||||
|
||||
it('page.goBack should work for file urls', async ({ page, server, asset, browserName, platform, isAndroid, mode }) => {
|
||||
it.fail(browserName === 'webkit' && platform === 'darwin', 'WebKit embedder fails to go back/forward to the file url.');
|
||||
it.skip(isAndroid, 'No files on Android');
|
||||
it.skip(mode.startsWith('service'));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user