Andrew Kaster
Andrew Kaster
Does this still reproduce on latest master? There have been updates to the build since this issue was created. But even two weeks ago I would expect the build not...
The user agent style sheet as outlined in the HTML and CSS specs is here, though there's definitely things that are either missing or ad hoc still. https://github.com/SerenityOS/serenity/blob/master/Userland/Libraries/LibWeb/CSS/Default.css
To confirm, this is when running ladybird in a musl-libc based desktop environment? I tested all of the tests in the LibJS test suite on an alpine:latest container last week...
This seems to be related to a misalignment with `internal_own_property_keys` and `internal_get_own_property` We claim to have a property key, but then the get own property method falls over and returns...
@trflynn89 This doesn't repro on master. Checking if it was 22285 or another PR (possibly my navigables PR?) that fixed it now.
Looks like #22285 fixed this specific issue (though the page still eventually crashes on its commit hash due to an HTML::Timer issue after a minute or so :P)
Conflicts with the Json change, which has a similar commit in this PR (same commit? lol). Have you run the test262 tests locally? edit: whoops, the first comment says you...
As mentioned on discord, we apparently create a separate memfd-backed anonymous buffer for each frame of animated gifs when interacting with ImageDecoder. https://github.com/SerenityOS/serenity/blob/333454456b9150d9efb8697d6d314bb5a6a06108/Userland/Services/ImageDecoder/ImageDecoderServer.ipc#L6 With a 708 frame gif, that means...
In a bash session on my ubuntu 22.04 machine, it's 1024 ``` $ ulimit -n 1024 ```
With the merging of https://github.com/SerenityOS/serenity/pull/24025 this issue becomes a bit more pressing. The current max number of fds that can be transferred at a time is 64. This limits gifs...