Tests/LibWeb: Wait until document fully loaded before simulating click

This makes the `form-image-submission.html` test pass more reliably.
This commit is contained in:
Tim Ledbetter 2024-06-07 22:08:05 +01:00 committed by Andreas Kling
parent 7925efda5f
commit 2fed064791
Notes: sideshowbarker 2024-07-17 22:41:14 +09:00
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,6 @@
[Skipped] [Skipped]
Text/input/Crypto/SubtleCrypto-exportKey.html Text/input/Crypto/SubtleCrypto-exportKey.html
Text/input/Crypto/SubtleCrypto-generateKey.html Text/input/Crypto/SubtleCrypto-generateKey.html
Text/input/HTML/form-image-submission.html
Text/input/WebAnimations/misc/DocumentTimeline.html Text/input/WebAnimations/misc/DocumentTimeline.html
Text/input/Worker/Worker-echo.html Text/input/Worker/Worker-echo.html
Text/input/window-scrollTo.html Text/input/window-scrollTo.html

View file

@ -28,7 +28,7 @@
done(); done();
}); });
image.addEventListener("load", () => { window.addEventListener("load", () => {
const imageRect = image.getBoundingClientRect(); const imageRect = image.getBoundingClientRect();
internals.click(imageRect.x + 10, imageRect.y + 20); internals.click(imageRect.x + 10, imageRect.y + 20);
}); });