dependabot[bot]
25e5ccd376
CI: Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4
...
Bumps [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action ) from 4.6.3 to 4.6.4.
- [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases )
- [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.6.3...v4.6.4 )
---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-09-03 10:14:43 -06:00
Timothy Flynn
7d0e33cb27
LibJS: Implement Uint8Array.prototype.setFromHex
2024-09-03 17:43:03 +02:00
Timothy Flynn
c7afd175bc
LibJS: Implement Uint8Array.fromHex
2024-09-03 17:43:03 +02:00
Timothy Flynn
440183b669
LibJS: Implement Uint8Array.prototype.setFromBase64
2024-09-03 17:43:03 +02:00
Timothy Flynn
e8f27160bf
LibJS: Implement Uint8Array.fromBase64
...
Note that we can currently only use simdutf for Base64 decoding if the
provided stopBeforePartial option is loose, which is the default. There
is an open issue for simdutf to implement strict and stop-before-partial
options. Until then, for those options, we implement a slow decoder that
is written exactly as the spec steps dictate.
See: https://github.com/simdutf/simdutf/issues/440
2024-09-03 17:43:03 +02:00
Timothy Flynn
c69d6fab8f
LibJS: Implement Uint8Array.prototype.toHex
2024-09-03 17:43:03 +02:00
Timothy Flynn
b97f9f2c55
LibJS: Implement Uint8Array.prototype.toBase64
2024-09-03 17:43:03 +02:00
Timothy Flynn
dfad1a7329
test-js: Add a helper method to convert a string to a UTF-8 byte array
...
In pure JS, we would have to implement a full UTF-8 encoder, so let's
add a helper method to do the work in C++.
2024-09-03 17:43:03 +02:00
Timothy Flynn
d265575269
AK: Add a Base64 decoder to decode into an existing buffer
...
Some callers (LibJS) will want to control the size of the output buffer,
to decode up to a maximum length. They will also want to receive partial
results in the case of an error. This patch adds a method to provide
those capabilities, and makes the existing implementation use it.
2024-09-03 17:43:03 +02:00
Timothy Flynn
35d8e7e63f
AK: Add a public helper to count the decoded length of a Base64 string
2024-09-03 17:43:03 +02:00
Timothy Flynn
41e14e3fc3
AK: Add an option to the base64 encoder to omit padding
...
Will be used by an upcoming JS prototype
2024-09-03 17:43:03 +02:00
HolonProduction
94230acf28
LibWeb: Update Selection.collapse
algorithm
2024-09-03 17:42:13 +02:00
Andreas Kling
8a6c8a1c27
LibWeb: Propagate text-decoration-* properties to anonymous wrappers
...
Fixes an issue where old prices were not displayed with strike-through
text on the PlayStation store. :^)
2024-09-03 17:41:05 +02:00
Aliaksandr Kalenik
415ea4ec0c
LibWeb: Resolve "position: sticky" insets relative to scrollport
...
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, FUZZ, ubuntu-22.04, Linux, 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
Reading of https://drafts.csswg.org/css-position revealed I was wrong
assuming sticky insets need to be resolved relative to containing block.
2024-09-03 11:34:31 +02:00
Tim Ledbetter
dcbb073b3e
LibWeb: Relayout document when SVG image is successfully loaded
2024-09-03 10:30:22 +01:00
Colin Reeder
45e4ab69d6
LibWeb: Add background color to input fields
2024-09-03 10:16:13 +01:00
Sam Atkins
da171c3230
Inspector: Add a basic style sheet inspector
...
Choosing options from the `<select>` will load and display that style
sheet's source text, with some checks to make sure that the text that
just loaded is the one we currently want.
The UI is a little goofy when scrolling, as it uses `position: sticky`
which we don't implement yet. But that's just more motivation to
implement it! :^)
2024-09-03 10:12:07 +01:00
Sam Atkins
49b2eb5f51
LibWeb: Add Document::get_style_sheet_source()
...
This returns the source text of the specified style sheet. StyleComputer
now exposes user agent style sheets so that these can also be requested.
2024-09-03 10:12:07 +01:00
Sam Atkins
51a426cc05
LibWeb: Add method for listing all style sheets on a page
...
This will be used by the inspector, for showing style sheet contents.
Identifying a specific style sheet is a bit tricky. Depending on where
it came from, a style sheet may have a URL, it might be associated with
a DOM element, both, or neither. This varied information is wrapped in
a new StyleSheetIdentifier struct.
2024-09-03 10:12:07 +01:00
Sam Atkins
dd3b011f15
LibWeb: Keep track of each CSSStyleSheet's CSSImportRules
...
This will be used to gather up a list of all loaded style sheets for the
inspector.
2024-09-03 10:12:07 +01:00
Sam Atkins
b00137df38
LibWeb/CSS: Store the style sheet's source text on the CSSStyleSheet
...
This is to enable the inspector to show this source.
There's a fairly hefty FIXME here because duplicating the source text is
a significant waste of memory. But I don't want to get too sidetracked.
2024-09-03 10:12:07 +01:00
Sam Atkins
8cbc211616
Meta: Make embed_as_string_view.py produce Strings instead
...
This is only used for CSS style sheets. One case wants it as a String,
and the others don't care, but will in future also want to have the
source as a String.
2024-09-03 10:12:07 +01:00
Sam Atkins
fd49562f50
LibWeb: Add helper for accessing Inspector's PageClient
...
This is a bit easier to understand.
2024-09-03 10:12:07 +01:00
Sam Atkins
240b58e90f
LibWeb/CSS: Set @import
as the owner rule of their loaded style sheet
2024-09-03 10:12:07 +01:00
Sam Atkins
4e18fce3a5
LibWeb: Set the location URL for @import
-ed/<link>
-ed style sheets
...
The spec text had changed for the value of `<link>`'s location, so I've
updated that.
2024-09-03 10:12:07 +01:00
Sam Atkins
c29f4f69ef
LibWeb: Rename Document::for_each_css_style_sheet for clarity
...
This only iterates style sheets that are in use, so make this clear by
renaming it to `for_each_active_css_style_sheet()`.
2024-09-03 10:12:07 +01:00
Sam Atkins
421fb6309f
UI/Qt: Assign dropdown handler for select in WebContentView, not Tab
...
This makes `<select>` elements also work outside of Tab content, for
example in the Inspector.
Co-authored-by: Tim Flynn <trflynn89@serenityos.org>
2024-09-03 10:12:07 +01:00
Sam Atkins
ced7b6de5e
Inspector: Remove border-radius for tab areas
...
This wasn't visible, until I tried adding a top toolbar to a tab area,
which made it look silly.
2024-09-03 10:12:07 +01:00
Olekoop
873e576da2
LibGfx: Use a diffrent way for finding libjxl on Android
...
When trying to use pkgconfig for finding libjxl, the build fails
trying to link the cross-compiler's libc++.
Using this way libjxl also requires hwy library.
Findlibjxl.cmake was taken from SDL_image and altered to include its license.
2024-09-03 00:17:49 -06:00
Olekoop
a7a136f30a
LibGfx: Use Android functions when compiling for Android in TypefaceSkia
2024-09-03 00:17:49 -06:00
Olekoop
bf84a681a5
Android: Use LibWebView for command line flags
...
On Android there's really no real way to provide command line flags.
We are using a dummy Main::Argument that only contains "ladybird"
as a name of the program.
The strings of Main::Argument cannot be empty, otherwise the program
throws an error. However the argc and argv can be set to 0 and nullptr
2024-09-03 00:17:49 -06:00
Olekoop
7cee53fad6
Android: Write prototypes to satisfy compiler
2024-09-03 00:17:49 -06:00
Olekoop
8fe2c9e43d
LibAudio: Override onAudioReady in PlaybackStreamOboe
2024-09-03 00:17:49 -06:00
Olekoop
4e6e23c242
LibAudio: Replace Duration with AK::Duration in PlaybackStreamOboe
...
AK::Duration isn't exported into global namespace since commit bf600c8
It basically does the same job as commit 6772d44
2024-09-03 00:17:49 -06:00
sideshowbarker
1975640e31
LibWeb: Make “create an event” set the event’s isTrusted to true
...
This change ensures that when then the code corresponding to the “create
an event” operation at https://dom.spec.whatwg.org/#concept-event-create
is called, the event’s isTrusted is set to true — as the spec requires.
That causes the failures for the following WPT tests to pass:
- https://wpt.fyi/results/html/semantics/forms/the-input-element/checkbox.html?run_id=5080423051034624
- https://wpt.fyi/results/html/semantics/interactive-elements/the-dialog-element/dialog-close.html?run_id=5080423051034624
…and there are likely a number of similar WPT tests that hit this same
code path which this commit will cause to be changed to passes.
Otherwise, without this change, the “create event” implementation
doesn’t conform to the spec requirements – nor behave interoperably with
other existing engines — and those WPT test would continue to fail.
This change also ensures that isTrusted continues to be set to false for
synthetic events.
2024-09-03 00:14:31 -06:00
Tim Ledbetter
5800b7e884
LibWeb: Invalidate the display list when calling set_needs_display()
...
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
Calls to `Document::set_needs_display()` and
`Paintable::set_needs_display()` now invalidate the display list by
default. This behavior can be changed by passing
`InvalidateDisplayList::No` to the function where invalidating the
display list is not necessary.
2024-09-02 20:12:08 +02:00
BenJilks
46649fbe1b
LibWeb: Add support for flex-wrap: wrap-reverse
...
Reverse the order of flex lines, when the `flex-wrap` property is set to
`wrap-reverse`. This will also swap the cross-start and cross-end
directions.
2024-09-02 17:42:11 +02:00
BenJilks
e2c1fe7255
LibWeb: Only reverse each line of a reverse flex-direction
...
When a flex container with a reverse `flex-direction` is wrapped. Only
each line should be reversed, not all items.
2024-09-02 17:42:11 +02:00
Andreas Kling
0f9444fa06
LibJS: Fix mix-up when re-exporting an imported symbol with a new name
...
This makes https://cling.com/ load, and more of the animated elements
on https://shopify.com/ start appearing.
2024-09-02 17:14:21 +02:00
Aliaksandr Kalenik
427e6cec7b
LibWeb: Use border box to position sticky elements
...
Fixes https://github.com/LadybirdBrowser/ladybird/issues/1245
2024-09-02 15:23:04 +02:00
Andreas Kling
2e06d26ddb
LibJS: Remember arrow function parsing failures by offset
...
We don't need to remember these by (line, column, offset). Just the
offset should be enough.
2024-09-02 15:22:51 +02:00
Andreas Kling
d5a0bb9159
LibJS: Remove unused field Token::m_filename
2024-09-02 15:22:51 +02:00
Andreas Kling
93a4d7395f
LibJS: Make JS lexer handle 2 and 3 character tokens faster
...
By checking the lengths and then looking directly at the bytes, the
generated code becomes a lot nicer.
This gives a 1.23x speedup when parsing the JS from x.com
2024-09-02 15:22:51 +02:00
Jamie Mansfield
3440d2b843
LibWeb: Implement AbstractWorker
...
This effectively implements Worker.onerror, and in future
SharedWorker.onerror.
2024-09-02 13:10:44 +02:00
Aliaksandr Kalenik
20f68106a7
LibWeb: Fix getBoundingClientRect() for elements with "position: sticky"
...
Use offset from ScrollFrame which is an actual value a box is shifted by
while painting.
Also change `update_paint_and_hit_testing_properties_if_needed()` to
refresh scroll frames state, because `getBoundingClientRect()` now
depends on them.
Fixes wrong file tree sidebar location and excessive layout
invalidations caused by some miscalculation on JS-side when wrong
bounding client rect is provided on Github PR pages like
https://github.com/LadybirdBrowser/ladybird/pull/1232/files
2024-09-02 13:10:22 +02:00
Khaled Lakehal
d1bea9c2a4
LibWeb: Add scope
attribute to HTMLTableCellElement
2024-09-02 13:09:41 +02:00
Sam Atkins
9f9ec45a31
Tests/LibWeb: Correct typo in "overflow: visible"
...
The test happened to pass anyway because `visible` is the default value.
2024-09-02 13:09:22 +02:00
sideshowbarker
55aad12fe3
Documentation: Explain how to use the rebaseline-libweb-test script
...
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 change adds documentation on using the rebaseline-libweb-test
script to regenerate the expectations file for a LibWeb/Text/input test.
2024-09-01 14:15:37 +02:00
Aliaksandr Kalenik
59f2b4fefc
LibWeb: Account for fixed position in nearest scrollable ancestor lookup
...
Scroll offset of body does not affect position of fixed elements, so
nearest scrollable lookup should early return from ancestor scrollable
lookup loop once "position: fixed" box is encountered.
Fixes regression introduced in 866608532a
2024-09-01 12:42:36 +02:00
Timothy Flynn
7fff00972d
LibWebView: Auto-select subtext when editing DOM nodes/attributes
...
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 adds the following behavior for the DOM node/attribute editor in
the Inspector:
* If the user double clicks on an attribute name, the name is selected.
* If the user double clicks on an attribute value, the value text (sans
the surrounding quotes) is selected.
* Otherwise, double clicks select the entire text range.
2024-08-31 15:51:08 +02:00