Jamie Mansfield
74d90338b1
LibWeb/Fetch: Support setting request priority from JS
2024-05-07 17:27:37 -06:00
Jamie Mansfield
4387d12159
LibWeb/Fetch: Block ports 4190 and 6679
...
See:
- https://github.com/whatwg/fetch/commit/4c3750d
2024-05-07 17:27:37 -06:00
Jamie Mansfield
987198782c
LibWeb/Fetch: Use "json" destination
...
See:
- https://github.com/SerenityOS/serenity/commit/da8d0d8
- https://github.com/whatwg/fetch/commit/49bff76
- https://github.com/whatwg/html/commit/37659e9
2024-05-07 17:27:37 -06:00
Jamie Mansfield
e2f242a552
LibWeb/Fetch: Implement "fetch destination from module type" AO
...
See:
- https://github.com/whatwg/html/commit/37659e9
2024-05-07 17:27:37 -06:00
Jamie Mansfield
1b043d259a
LibWeb: Implement ShadowRoot.onslotchange
2024-05-07 17:27:37 -06:00
Jamie Mansfield
da0ca2f866
LibWeb: Implement ShadowRoot.delegatesFocus
2024-05-07 17:27:37 -06:00
Shannon Booth
71819153cb
LibWeb: Implement Element::scroll(HTML::ScrollToOptions)
2024-05-07 17:21:52 -06:00
Shannon Booth
37ca32d62c
LibWeb: Implement Element::scroll(x, y) closer to spec
2024-05-07 17:21:52 -06:00
Shannon Booth
31977cc0ac
LibWeb: Implement Element::scroll_by(x, y)
2024-05-07 17:21:52 -06:00
Shannon Booth
e640a68733
LibWeb: Implement Element::scroll_by(HTML::ScrollToOptions)
2024-05-07 17:21:52 -06:00
Shannon Booth
e5d03e382e
LibWeb: Add AO for "normalize non-finite values"
...
We had implemented this in two different ways. Add an AO to to align the
implementations.
2024-05-07 17:21:52 -06:00
Liav A.
897b5dfe8b
Documentation+Base: Remove old remainders of RAM disk support
...
We don't support such configuration for a very long time, so there's no
point of keeping references to that feature.
2024-05-07 17:02:09 -06:00
Liav A.
f7a85401bb
Kernel/Storage: Remove a stale StorageDevice constructor method
...
ramdisk devices are long gone by now, so this is a stale method.
2024-05-07 17:02:09 -06:00
Sönke Holz
116f82d21a
LibDebug: Don't assume compilation unit index == line program index
...
Instead, use the `DW_AT_stmt_list` attribute of the compilation unit
entry to determine the corresponding line program.
2024-05-07 16:57:09 -06:00
Sönke Holz
14ae04075e
LibDebug: Make LineProgram::create take DwarfInfo as a const reference
...
The m_dwarf_info is never mutated, so it can be const.
2024-05-07 16:57:09 -06:00
Sönke Holz
bc7d067821
LibDebug: Remove m_stream member from LineProgram
...
The stream passed to LineProgram::create is a temporary, so rather than
keeping an (unused) dangling reference, pass this stream explicitly to
all functions used by LineProgram::create.
2024-05-07 16:57:09 -06:00
implicitfield
f5a74d7141
Utilities: Add fusermount
...
This only contains the bare minimum amount of functionality required
by libfuse.
2024-05-07 16:54:27 -06:00
implicitfield
a08d1637e2
Kernel: Add FUSE support
...
This adds both the fuse device (used for communication between the
kernel and the filesystem) and filesystem implementation itself.
2024-05-07 16:54:27 -06:00
implicitfield
f923016e0b
AK: Add reinterpret_as_octal()
...
This is useful for parsing user-provided integers that should be
interpreted as octals.
2024-05-07 16:54:27 -06:00
Tim Ledbetter
57f0ea186e
LibWeb: Update Element::directionality()
to match current spec text
...
This fixes a crash that occurred when determining the directionality of
input elements.
2024-05-07 16:45:28 -06:00
Tim Ledbetter
23473d64ca
LibWeb: Make HTMLSlotElement::assigned_{elements,nodes} methods const
2024-05-07 16:45:28 -06:00
Tim Ledbetter
398bf10b92
LibWeb: Use TraversalDecision
for multi level Node traversal methods
...
This adds the `SkipChildrenAndContinue` option, where traversal
continues but child nodes are not included.
2024-05-07 16:45:28 -06:00
Tim Ledbetter
c57d395a48
LibWeb: Use IterationDecision
in single level Node iteration methods
...
`Node::for_each_child()` and `Node::for_each_child_of_type()` callbacks
now return an `IterationDecision`, which allows us to break early if
required.
2024-05-07 16:45:28 -06:00
Abuneri
b5bed37074
AK: Replace FP math in is_power_of
with a purely integral algorithm
...
The previous naive approach was causing test failures because of
rounding issues in some exotic environments. In particular, MSVC
via MSBuild
2024-05-07 16:43:34 -06:00
Dan Klishch
5f33db9abe
DynamicLoader+LibSanitizer: Link LibSanitizer to DynamicLoader properly
2024-05-07 16:39:17 -06:00
Dan Klishch
da48a0ca5b
LibC: Don't use assert in malloc.cpp
2024-05-07 16:39:17 -06:00
Dan Klishch
d510d2aeb2
LibC: Remove now redundant NO_TLS guards
...
Since DynamicLoader is compiled with -fdata-sections and --gc-sections,
unused thread_local variables won't create TLS section in it anymore.
2024-05-07 16:39:17 -06:00
Dan Klishch
5963b785e7
LibELF: Unbreak dynamic loader on riscv64
...
It turns out riscv64 indeed requires -fno-stack-protector for
perform_relative_relocations, oopsie :^)
2024-05-07 16:39:17 -06:00
Dan Klishch
61cf20582c
DynamicLoader+LibC: Link LibC into DynamicLoader --as-sane-people
...
In particular, define a static LibC library *in LibC's CMakeLists* and
use it in DynamicLoader. This is similar to the way LibELF is included
in DynamicLoader.
Additionally, compile DynamicLoader with -ffunction-sections,
-fdata-sections, and -Wl,--gc-sections. This brings the loader size from
~2Mb to ~1Mb with debug symbols and from ~500Kb to ~150Kb without. Also,
this makes linking DynamicLoader with LibTimeZone unnecessary.
2024-05-07 16:39:17 -06:00
Dan Klishch
0b6c08c9a2
LibSystem: Slightly simplify CMakeLists.txt
...
LibSystem's source directory is included project-wide in
/CMakeLists.txt.
2024-05-07 16:39:17 -06:00
Dan Klishch
e3e98ed3eb
LibC: Modernize and simplify LibC/CMakeLists.txt
2024-05-07 16:39:17 -06:00
Dan Klishch
ce5813d6ab
LibC: Remove libssp_nonshared.a
...
__stack_chk_fail_local, which libssp_nonshared.a provides, is a relic of
i386 times and is not used on modern architectures.
2024-05-07 16:39:17 -06:00
Dan Klishch
f60a02fc78
LibC: Move architecture detection from fenv.h to arch/fenv.h
...
This is similar to how it is done in sys/arch/regs.h.
2024-05-07 16:39:17 -06:00
Dan Klishch
4439b4afcf
LibC+LibSanitizer+LibSystem: Remove static libc
...
Static libc on Serenity is broken in a more than one way and requires a
lot of patches to bring it to a usable and useful state. Therefore,
instead of keeping it around (and breaking even more) during the
upcoming libc build refactor, let's just delete it.
2024-05-07 16:39:17 -06:00
Dan Klishch
028f979916
DynamicLoader: Allow syscalls from dynamic loader more often
...
Previously, if DynamicLoader was invoked directly, it wouldn't be able
to perform syscalls after the point just before the call to the main
executable entry. This made dlopen to crash if it was invoked from
within an executable that was itself executed using
`/usr/lib/Loader.so <executable>`.
The fix can be tested by executing
`cd /usr/Tests/LibELF; /usr/lib/Loader.so /usr/Tests/LibELF/TestDlOpen`
in Serenity's terminal.
2024-05-07 16:36:38 -06:00
Dan Klishch
cc5bacf886
Kernel: Allow annotating initially loaded executable segments
...
This allows marking regions as VirtualMemoryRangeFlags::SyscallCode in
static executables.
2024-05-07 16:36:38 -06:00
Sam Atkins
926a275794
HexEditor: Move endianness selector to Value Inspector panel
...
It's clearer to have the choice here than hidden away in a menu. It also
means we don't need the column heading to say the endianness.
2024-05-07 16:33:59 -06:00
Andrew Kaster
6d72d02d7e
Documentation: Describe how to use add_libweb_test.py for Text tests
2024-05-07 16:29:19 -06:00
Andrew Kaster
e5f361500e
CI: Use common cache restore and cache save action on GitHub Actions
...
Unfortunately a composite action cannot have a `post:` step like
JavaScript actions are allowed to have, so we need to explicitly call
the post/save actions ourselves from the workflow file when we want to
save Toolchain/QEMU/ccache caches.
Co-Authored-By: Timothy Flynn <trflynn89@pm.me>
2024-05-07 15:28:46 -06:00
Timothy Flynn
3d6d2b2589
CI: Use the Setup action for the WASM REPL
...
This ensures we install ccache, for example.
2024-05-07 15:28:46 -06:00
theonlyasdk
efc88c73fa
Ladybird: Add Wikipedia search button in newtab.html
2024-05-07 11:46:03 -04:00
Nico Weber
3435770c23
Meta: Use -std=c++2b on mac hosts in the GN build
...
Xcode clang doesn't understand the -std=c++23 spelling yet, and this
is what CMake's `set(CMAKE_CXX_STANDARD 23)` translates to too.
Unbreaks building with Xcode clang on macOS.
2024-05-07 11:41:40 -04:00
Nico Weber
2f81a3610d
Meta: Port recent changes to the GN build
...
3a73eb99ac
2024-05-07 11:41:40 -04:00
Jamie Mansfield
8c4dc9476b
LibWeb: Precision when using background-size: contain
...
This ensures that precision is maintained when calculating the image
size when using `background-size: contain`.
2024-05-07 11:15:04 -04:00
Jamie Mansfield
e48cb80a66
LibWeb: Precision when using background-size: cover
...
This ensures that precision is maintained when calculating the image
size when using `background-size: cover`.
2024-05-07 11:15:04 -04:00
Nico Weber
dad4843ee4
TestImageWriter: Add a JPEG roundtrip test
2024-05-07 11:14:41 -04:00
Nico Weber
9384f118d2
TestImageWriter: Add a QOI roundtrip test
2024-05-07 11:14:41 -04:00
Nico Weber
83bdc9c831
TestImageWriter: Add a BMP roundtrip test
2024-05-07 11:14:41 -04:00
Nico Weber
0a26831a10
TestImageWriter: Add a PNG roundtrip test
2024-05-07 11:14:41 -04:00
Nico Weber
aefab64984
TestImageWriter: Use double parens instead of temporary err
...
Explicit template arguments must be wrapped in parens,
else they confuse the preprocessor.
Add the parens instead of avoiding the use of explicit template
arguments.
No behavior change.
2024-05-07 11:14:41 -04:00