feat(webkit): bump to 1488 (#6826)

This commit is contained in:
Yury Semikhatsky 2021-06-02 06:09:58 +00:00 committed by GitHub
parent 251c7d8df1
commit 1020d3d329
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 12 deletions

View File

@ -18,7 +18,7 @@
},
{
"name": "webkit",
"revision": "1486",
"revision": "1488",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1444"

View File

@ -52,12 +52,14 @@ it('should format number', async ({browser, server}) => {
}
});
it('should format date', async ({browser, server}) => {
it('should format date', async ({browser, server, browserName}) => {
{
const context = await browser.newContext({ locale: 'en-US', timezoneId: 'America/Los_Angeles' });
const page = await context.newPage();
await page.goto(server.EMPTY_PAGE);
const formatted = 'Sat Nov 19 2016 10:12:34 GMT-0800 (Pacific Standard Time)';
const formatted = browserName === 'webkit' ?
'Sat Nov 19 2016 10:12:34 GMT-0800' :
'Sat Nov 19 2016 10:12:34 GMT-0800 (Pacific Standard Time)';
expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(formatted);
await context.close();
}
@ -65,8 +67,10 @@ it('should format date', async ({browser, server}) => {
const context = await browser.newContext({ locale: 'de-DE', timezoneId: 'Europe/Berlin' });
const page = await context.newPage();
await page.goto(server.EMPTY_PAGE);
expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(
'Sat Nov 19 2016 19:12:34 GMT+0100 (Mitteleuropäische Normalzeit)');
const formatted = browserName === 'webkit' ?
'Sat Nov 19 2016 19:12:34 GMT+0100' :
'Sat Nov 19 2016 19:12:34 GMT+0100 (Mitteleuropäische Normalzeit)';
expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(formatted);
await context.close();
}
});

View File

@ -17,30 +17,38 @@
import { browserTest as it, expect } from './config/browserTest';
it('should work', async ({ browser }) => {
it('should work', async ({ browser, browserName }) => {
const func = () => new Date(1479579154987).toString();
{
const context = await browser.newContext({ locale: 'en-US', timezoneId: 'America/Jamaica' });
const page = await context.newPage();
expect(await page.evaluate(func)).toBe('Sat Nov 19 2016 13:12:34 GMT-0500 (Eastern Standard Time)');
expect(await page.evaluate(func)).toBe(browserName === 'webkit' ?
'Sat Nov 19 2016 13:12:34 GMT-0500' :
'Sat Nov 19 2016 13:12:34 GMT-0500 (Eastern Standard Time)');
await context.close();
}
{
const context = await browser.newContext({ locale: 'en-US', timezoneId: 'Pacific/Honolulu' });
const page = await context.newPage();
expect(await page.evaluate(func)).toBe('Sat Nov 19 2016 08:12:34 GMT-1000 (Hawaii-Aleutian Standard Time)');
expect(await page.evaluate(func)).toBe(browserName === 'webkit' ?
'Sat Nov 19 2016 08:12:34 GMT-1000' :
'Sat Nov 19 2016 08:12:34 GMT-1000 (Hawaii-Aleutian Standard Time)');
await context.close();
}
{
const context = await browser.newContext({ locale: 'en-US', timezoneId: 'America/Buenos_Aires' });
const page = await context.newPage();
expect(await page.evaluate(func)).toBe('Sat Nov 19 2016 15:12:34 GMT-0300 (Argentina Standard Time)');
expect(await page.evaluate(func)).toBe(browserName === 'webkit' ?
'Sat Nov 19 2016 15:12:34 GMT-0300' :
'Sat Nov 19 2016 15:12:34 GMT-0300 (Argentina Standard Time)');
await context.close();
}
{
const context = await browser.newContext({ locale: 'en-US', timezoneId: 'Europe/Berlin' });
const page = await context.newPage();
expect(await page.evaluate(func)).toBe('Sat Nov 19 2016 19:12:34 GMT+0100 (Central European Standard Time)');
expect(await page.evaluate(func)).toBe(browserName === 'webkit' ?
'Sat Nov 19 2016 19:12:34 GMT+0100' :
'Sat Nov 19 2016 19:12:34 GMT+0100 (Central European Standard Time)');
await context.close();
}
});

View File

@ -44,9 +44,11 @@ it('should support reducedMotion option', async ({launchPersistent}) => {
expect(await page.evaluate(() => matchMedia('(prefers-reduced-motion: no-preference)').matches)).toBe(false);
});
it('should support timezoneId option', async ({launchPersistent}) => {
it('should support timezoneId option', async ({launchPersistent, browserName}) => {
const {page} = await launchPersistent({locale: 'en-US', timezoneId: 'America/Jamaica'});
expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe('Sat Nov 19 2016 13:12:34 GMT-0500 (Eastern Standard Time)');
expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(browserName === 'webkit' ?
'Sat Nov 19 2016 13:12:34 GMT-0500' :
'Sat Nov 19 2016 13:12:34 GMT-0500 (Eastern Standard Time)');
});
it('should support locale option', async ({launchPersistent}) => {