Skip to content

Commit

Permalink
test: enable span scroll in webkit (#20681)
Browse files Browse the repository at this point in the history
Fixes #20165
  • Loading branch information
yury-s committed Feb 6, 2023
1 parent 0a752f3 commit 9303dd5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/page/page-click-scroll.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,8 @@ it('should not crash when force-clicking hidden input', async ({ page, browserNa
expect(error.message).toContain('Element is not visible');
});

it('should scroll into view span element', async ({ page, browserName }) => {
it('should scroll into view span element', async ({ page }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/20165' });
it.fixme(browserName === 'webkit');
await page.setContent(`
<div id=big style="height: 10000px;"></div>
<span id=small>foo</span>
Expand Down

0 comments on commit 9303dd5

Please sign in to comment.