diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts
index 03ff1d7feb..e9ed0cab67 100644
--- a/tests/library/capabilities.spec.ts
+++ b/tests/library/capabilities.spec.ts
@@ -429,6 +429,20 @@ it('should not crash when clicking a label with a ', {
expect(fileChooser.page()).toBe(page);
});
+it('should not crash when clicking a color input', {
+ annotation: {
+ type: 'issue',
+ description: 'https://github.com/microsoft/playwright/issues/33864'
+ }
+}, async ({ page }) => {
+ await page.setContent('');
+ const input = page.locator('input');
+
+ await expect(input).toBeVisible();
+ await input.click();
+ await expect(input).toBeVisible();
+});
+
it('should not auto play audio', {
annotation: {
type: 'issue',