Skip to content

Commit

Permalink
feat(webkit): roll to r2090 (#33050)
Browse files Browse the repository at this point in the history
  • Loading branch information
playwrightmachine authored Oct 10, 2024
1 parent 82fe882 commit 10a9e1c
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -27,7 +27,7 @@
},
{
"name": "webkit",
"revision": "2089",
"revision": "2090",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",
Expand Down
3 changes: 2 additions & 1 deletion tests/page/page-goto.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ it('should work with subframes return 204 with domcontentloaded', async ({ page,
await page.goto(server.PREFIX + '/frames/one-frame.html', { waitUntil: 'domcontentloaded' });
});

it('should fail when server returns 204', async ({ page, server, browserName }) => {
it('should fail when server returns 204', async ({ page, server, browserName, isLinux }) => {
it.fixme(browserName === 'webkit' && isLinux, 'Regressed in https://github.com/microsoft/playwright-browsers/pull/1297');
// WebKit just loads an empty page.
server.setRoute('/empty.html', (req, res) => {
res.statusCode = 204;
Expand Down

0 comments on commit 10a9e1c

Please sign in to comment.