Sam Atkins
a8b3d363cc
Tests: Annotate reasons for skipping LibWeb tests
...
Eventually we want to stop skipping these, so it's helpful to know why
they were skipped in the first place. :^)
I've grouped them together by reason, so the order has changed a little.
For some of these the reason isn't clear.
2024-11-06 20:03:38 +01:00
Sam Atkins
b7efb61fbe
Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
...
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Now each test type has the same directories:
- input
- expected
- data
Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00
Sam Atkins
ebbef87243
Tests: Skip flakey css/cubic-bezier-infinite-slope-crash.html
test
...
This has been consistently timing-out on CI.
2024-11-04 12:50:44 +00:00
Andreas Kling
969ee0f3e0
LibJS: Make DataView::byte_offset() return u32
...
This fixes structured serialization of DataView. It was expected
to be uniform with TypedArray, which returns u32 for byte_offset().
This was covered by a number of WPT infrastructure tests, which this
commit also imports.
2024-11-04 00:22:40 +01:00
Andreas Kling
64747c0397
LibWeb: Make HTML parser "current node" APIs return nullable pointer
...
It's actually possible for there to be no adjusted current node, when
the stack of open elements is empty. This was covered by one of the WPT
parsing tests.
2024-11-03 20:32:32 +01:00
Andreas Kling
88a4a86ece
Tests: Import many HTML parsing tests from WPT
...
I had to skip a lot of these due to assertion failures that we need to
investigate before unskipping.
2024-11-03 17:51:44 +01:00
Timothy Flynn
6708251968
LibWeb: Disable css/transition-basics.html test
...
This is flaky in CI.
2024-10-31 13:23:26 -04:00
Andreas Kling
33507578e0
Tests: Skip css/css-flexbox/abspos/position-absolute-001.html for now
...
This test is too slow for our GCC CI :^(
2024-10-30 18:45:14 +01:00
Shannon Booth
755b63132b
LibWeb: Implement DedicatedWorkerGlobalScope postMessage(msg, transfer)
...
Unfortunately the added test (which passes locally) is skipped as it is
based off other Worker tests which are also skipped due to being flakey
in CI.
2024-10-28 22:56:39 +01:00
thislooksfun
feaf2feab8
LibWeb: Skip DedicatedWorkerGlobalScope-instanceof test
...
It is consistently hanging on mac. See #1306 for details.
2024-10-19 16:59:51 -04:00
Tim Ledbetter
fd8d350b47
LibWeb: Don't discard PostedMessage tasks when closing a worker
...
The spec expects `postMessage()` to act as if it is invoked
immediately. Since `postMessage()` isn't actually invoked immediately,
keep tasks with source `PostedMessage` in the task queue, so that these
tasks are processed. Fixes a hang when `WorkerGlobalScope.close()` is
called immediately after `postMessage()`.
2024-10-08 06:51:04 +02:00
Timothy Flynn
b1718f5691
LibWeb: Disable remaining Worker tests for now
...
These time out on macOS CI.
2024-10-06 19:24:25 +02:00
Aliaksandr Kalenik
e0cd2edccb
Tests/LibWeb: Disable cross-origin-window-properties.html test for now
...
After https://github.com/LadybirdBrowser/ladybird/pull/1616 got merged
this test started to occasionaly timeout on Linux CI:
https://github.com/LadybirdBrowser/ladybird/actions/runs/11174338933/job/31063881592
https://github.com/LadybirdBrowser/ladybird/actions/runs/11177347649/job/31072646967?pr=1623
Since it's only this test that is timing out, I'm concluding that the
event loop processing change is working fine and the issue lies with the
test itself, so let's disable it for now.
2024-10-04 17:56:08 +02:00
Timothy Flynn
ee7b90b789
LibWeb: Disable worker-crypto test for now
...
CI / Lagom (false, FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-22.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-22.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
This times out on macOS CI.
2024-09-29 16:51:52 -04:00
Timothy Flynn
5233f9c8e6
LibWeb: Disable worker-blob and worker-location tests for now
...
CI / Lagom (false, FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-22.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-22.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-22.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
These frequently time out on macOS CI.
2024-09-06 16:58:52 -04:00
Tim Ledbetter
9585da37ad
Tests: Skip css-keyframe-fill-forwards.html
ref test
...
This test is currently causing intermittent CI failures.
(cherry picked from commit 24c75922d8476b5096657acb5a1b4c71454ca616)
2024-06-26 18:56:33 -06:00
Tim Ledbetter
2fed064791
Tests/LibWeb: Wait until document fully loaded before simulating click
...
This makes the `form-image-submission.html` test pass more reliably.
2024-06-08 07:59:21 +02:00
Andreas Kling
533eea1958
Tests: Skip Text/input/HTML/form-image-submission.html (flaky)
...
Issue: https://github.com/LadybirdWebBrowser/ladybird/issues/100
2024-06-07 19:39:45 +02:00
Timothy Flynn
41c9cb032f
Test: Skip flakey Text/input/WebAnimations/misc/DocumentTimeline test
...
Ref https://github.com/LadybirdWebBrowser/ladybird/issues/19
2024-06-03 11:42:18 -06:00
Andrew Kaster
416eb74fa5
Tests: Skip flaky unicode-range LibWeb Ref test
...
This seems related to CSS resources and the load event.
2024-04-30 07:18:40 -06:00
Matthew Olsson
a1943eb661
LibWeb: Enable all of the skipped animation tests
2024-03-28 21:08:32 +01:00
Matthew Olsson
6408321d33
LibWeb: Disable the animation-single-iteration-no-repeat.html test
2024-03-27 09:40:05 -06:00
Andreas Kling
2874380849
Tests/LibWeb: Actually skip the flaky Crypto tests
...
We had some bogus paths in the skip list.
2024-03-20 20:30:22 +01:00
Andrew Kaster
6574e60805
LibWeb: Skip SubtleCrypto generate/exportKey tests
...
These tests seem to interact in a way that times out the test runner and
messes up its expectations. The 'current test' moves on just as the
previous crypto test calls done, resulting in the wrong expectations
being checked. In reality these tests should be timing out themselves,
rather than causing adjacent tests to fail intermittently...
2024-03-16 01:15:09 -06:00
Timothy Flynn
bf06d5b634
LibWeb: Disable animations tests that depend on consistent timing
...
These are flaky on CI, so disable them for now.
2024-03-10 12:13:58 -04:00
Andrew Kaster
08a3c562f3
LibWeb: Resolve postMessage test promises if iframes already loaded
...
For some reason on macOS with ASAN enabled, the test promises in
HTML/Window-postMessage do not resolve. These promises wait for both
the in-document and the blob url iframes to load. It's not clear why
this works fine in Linux nor why the onload handler doesn't fire
when the iframe has already loaded.
2024-01-27 07:51:30 +01:00
Andreas Kling
e668cdcf22
Tests/LibWeb: Skip HTML/Window-postMessage.html since it's flakey
2024-01-25 13:50:40 +01:00
Andrew Kaster
3c7abe22ca
LibWeb: Skip window-scrollTo test that keeps timing out on macOS
2023-12-29 17:03:51 +01:00
Andrew Kaster
fd70e1a9ce
LibWeb: Skip Worker-echo test again
...
Turns out it's still flaky in CI :(
2023-12-25 15:05:07 -05:00
Andrew Kaster
b10fee00eb
LibWeb+WebWorker: Convert Workers to use MessagePorts for postMessage
...
This aligns Workers and Window and MessagePorts to all use the same
mechanism for transferring serialized messages across realms.
It also allows transferring more message ports into a worker.
Re-enable the Worker-echo test, as none of the MessagePort tests have
themselves been flaky, and those are now using the same underlying
implementation.
2023-12-25 12:09:11 +01:00
Andrew Kaster
39c4a5e948
LibWeb: Add config file for LibWeb tests that skips Worker-echo.html
2023-12-07 16:46:20 -05:00