Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/library/browsercontext-locale.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ it('should affect Intl.DateTimeFormat().resolvedOptions().locale', async ({ brow

it('should send user Accept-Language header', {
annotation: [{ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23732' }],
}, async ({ browser, server }) => {
}, async ({ browser, server, browserName, isWindows }) => {
it.fixme(browserName === 'webkit' && isWindows, 'WebKit on Windows appends the default language to the page-set Accept-Language header, https://github.com/microsoft/playwright/issues/23732');

const context = await browser.newContext({ locale: 'en-GB' });
const page = await context.newPage();
await page.goto(server.EMPTY_PAGE);
Expand Down