feat(webkit): roll webkit to 1106

This commit is contained in:
Pavel 2020-01-22 17:29:43 -08:00
parent 05cb267a86
commit b1ed9c8672
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
"playwright": {
"chromium_revision": "733125",
"firefox_revision": "1016",
"webkit_revision": "1104"
"webkit_revision": "1106"
},
"scripts": {
"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.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.focus('textarea');
const text = 'This is the text that we are going to try to select. Let\'s see how it goes.';