From 78963468104f8fa8d2a39dc5ba98921aee770b1f Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Wed, 28 Sep 2022 03:13:07 -0700 Subject: [PATCH] feat(chromium-tip-of-tree): roll to r1046 (#17653) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Max Schmitt --- packages/playwright-core/browsers.json | 4 ++-- tests/page/page-accessibility.spec.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 90ef0a3f1c..216f7623f8 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -15,9 +15,9 @@ }, { "name": "chromium-tip-of-tree", - "revision": "1044", + "revision": "1046", "installByDefault": false, - "browserVersion": "108.0.5311.0" + "browserVersion": "108.0.5325.0" }, { "name": "firefox", diff --git a/tests/page/page-accessibility.spec.ts b/tests/page/page-accessibility.spec.ts index 2be06495db..635943dc9b 100644 --- a/tests/page/page-accessibility.spec.ts +++ b/tests/page/page-accessibility.spec.ts @@ -141,7 +141,7 @@ it('should not report text nodes inside controls', async function({ page, browse expect(await page.accessibility.snapshot()).toEqual(golden); }); -it('rich text editable fields should have children', async function({ page, browserName }) { +it('rich text editable fields should have children', async function({ page, browserName, browserVersion }) { it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy'); await page.setContent(` @@ -164,7 +164,7 @@ it('rich text editable fields should have children', async function({ page, brow value: 'Edit this image: ', children: [{ role: 'text', - name: 'Edit this image:' + name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: ' }, { role: 'img', name: 'my fake image' @@ -202,7 +202,7 @@ it('rich text editable fields with role should have children', async function({ name: 'my fake image' }] : [{ role: 'text', - name: 'Edit this image:' + name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: ' }] }; const snapshot = await page.accessibility.snapshot();