feat(webkit): roll webkit to 1106 (#573)

This commit is contained in:
Pavel Feldman 2020-01-22 17:34:34 -08:00 committed by Dmitry Gozman
parent 1c96d42a4b
commit bb4ae87c61
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
"playwright": { "playwright": {
"chromium_revision": "733125", "chromium_revision": "733125",
"firefox_revision": "1016", "firefox_revision": "1016",
"webkit_revision": "1104" "webkit_revision": "1106"
}, },
"scripts": { "scripts": {
"unit": "node test/test.js", "unit": "node test/test.js",

View file

@ -56,7 +56,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT,
expect(event.isTrusted).toBe(true); expect(event.isTrusted).toBe(true);
expect(event.button).toBe(0); expect(event.button).toBe(0);
}); });
it.skip(WEBKIT)('should select the text with mouse', async({page, server}) => { it('should select the text with mouse', async({page, server}) => {
await page.goto(server.PREFIX + '/input/textarea.html'); await page.goto(server.PREFIX + '/input/textarea.html');
await page.focus('textarea'); await page.focus('textarea');
const text = 'This is the text that we are going to try to select. Let\'s see how it goes.'; const text = 'This is the text that we are going to try to select. Let\'s see how it goes.';