diff --git a/test/click.spec.js b/test/click.spec.js
index 2dd4e1cb32..95731ab234 100644
--- a/test/click.spec.js
+++ b/test/click.spec.js
@@ -404,34 +404,48 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROMI
expect(await page.evaluate('window.clicked')).toBe(true);
});
xit('should click on an animated button', async({page}) => {
- const buttonSize = 50;
+ // This test exposes two issues:
+ // - Chromium headless does not issue rafs between first and second animateLeft() calls.
+ // - Chromium and WebKit keep element bounds the same when for 2 frames when changing left to a new value.
+ const buttonSize = 10;
const containerWidth = 500;
- const transition = 500;
+ const transition = 100;
await page.setContent(`
-
-