Skip to content

Commit

Permalink
Fenced frame: attempt to deflake document activeElement test
Browse files Browse the repository at this point in the history
Like other similar flake fixes, this uses multiClick() to perform
multiple clicks in case one of the clicks doesn't properly register.

Bug: 353256758
Change-Id: Iad904730a8434c52d957353da2a940ad794ac88c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5762702
Commit-Queue: Liam Brady <[email protected]>
Reviewed-by: Andrew Verge <[email protected]>
Commit-Queue: Andrew Verge <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1337300}
  • Loading branch information
Liam Brady authored and chromium-wpt-export-bot committed Aug 5, 2024
1 parent d440798 commit 011dbf9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions fenced-frame/document-activeelement.https.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

assert_equals(document.activeElement, document.body);

await actions.pointerMove(0, 0, {origin: fencedframe.element})
.pointerDown()
.pointerUp()
.send();
await multiClick(0, 0, fencedframe.element, 5);

assert_equals(document.activeElement, fencedframe.element);
}, 'document.activeElement should be the fenced frame when it has focus');
Expand Down

0 comments on commit 011dbf9

Please sign in to comment.