Tim Ledbetter
aa79a4ed9a
pkill: Add -o
option to kill the oldest matching process only
2023-06-16 07:22:45 +02:00
Tim Ledbetter
519893d31f
pkill: Add -n
option to kill the newest matching process only
2023-06-16 07:22:45 +02:00
Tim Ledbetter
0621a83cb4
pkill: Allow signal names to be used with the -s
option
2023-06-16 07:22:45 +02:00
Tim Ledbetter
0d71db6721
pkill: Initialize display_number_of_matches
to false
...
This ensures the number of matches is not displayed when the `-c`
option is not specified.
2023-06-16 07:22:45 +02:00
Sam Atkins
cbf84152df
LibWeb: Resolve fill and stroke related CSS properties
2023-06-16 07:03:57 +02:00
Sam Atkins
af51095fe2
LibWeb: Stop making ComputedValues::stroke_width() optional
...
This defaults to 1px and should always have some kind of value.
2023-06-16 07:03:57 +02:00
Sam Atkins
5cdcd135ab
LibWeb: Add parsing for CSS <paint>
values
...
This gets rid of a couple of FIXMEs in Properties.json :^)
2023-06-16 07:03:57 +02:00
kamp
23aae7c7f3
LibWeb: Implement the align attribute for divs
...
As specified in section 15.3.3 of the HTML spec.
2023-06-16 06:55:21 +02:00
kamp
4ac7c41483
LibWeb: Add -libweb-left and -libweb-right text-align values
...
These ensure that block level elements are also left and right aligned
respectively on top of the regular text alignment, matching
-libweb-center.
2023-06-16 06:55:21 +02:00
Nico Weber
7302f8838c
Base: Remove unused png file
...
See here: https://github.com/SerenityOS/serenity/pull/15234#issuecomment-1591477603
2023-06-15 17:44:44 -04:00
Romain Chardiny
dc65a2f2b8
unzip: Add option to list files of an archive
2023-06-15 21:01:51 +01:00
stelar7
a9a62ad8c9
LibWeb: Implement CSS atan2()
2023-06-15 16:54:14 +01:00
stelar7
1aa84dfddd
LibWeb: Implement CSS atan()
2023-06-15 16:54:14 +01:00
stelar7
784e1cfb72
LibWeb: Implement CSS acos()
2023-06-15 16:54:14 +01:00
stelar7
708b5ef447
LibWeb: Implement CSS asin()
2023-06-15 16:54:14 +01:00
stelar7
64f0349a9e
LibWeb: Implement CSS tan()
2023-06-15 16:54:14 +01:00
stelar7
46a5efe388
LibWeb: Implement CSS cos()
2023-06-15 16:54:14 +01:00
stelar7
c73f476915
LibWeb: Implement CSS sin()
2023-06-15 16:54:14 +01:00
stelar7
ba7af82c5c
LibWeb: Parse css math constants
2023-06-15 15:40:55 +01:00
wertzuz
f8527e1cad
AK: Rename fixme to match other FIXMEs
2023-06-15 15:38:50 +01:00
Om Prakaash
7c66c5f12d
LibJS: Replace a DeprecatedString with String
...
Refactors Date class to use String instead of DeprecatedString.
Changes use of the Date class in DatePrototype accordingly.
2023-06-15 14:03:51 +01:00
Karol Kosek
65a927d16e
Help: Clear statusbar when leaving link
2023-06-15 13:53:22 +01:00
Karol Kosek
bd8e16b704
CharacterMap: Override statusbar text on action hover
...
We have quite a lot of nicely described action status tips here that we
have never shown. Let's change that!
2023-06-15 13:53:22 +01:00
Karol Kosek
92ff12a0d0
LibGUI+Userland: Port StatusBar::set_override_text() to String
2023-06-15 13:53:22 +01:00
Karol Kosek
5234a30731
LibGUI+Userland: Port Action status tips to String
2023-06-15 13:53:22 +01:00
Karol Kosek
4b169cf25f
LibGUI+Userland: Use action text as a fallback in Action::status_tip()
...
Many applications already do this in their code. This change will simply
move the logic to a single function to stop repeating ourselves!
2023-06-15 13:53:22 +01:00
Karol Kosek
2029750519
LibGUI+Userland: Port StatusBar::text() and set_text functions to String
2023-06-15 13:53:22 +01:00
Karol Kosek
2064f544c6
LibGUI: Store Statusbar text as String
2023-06-15 13:53:22 +01:00
stelar7
e1e382152c
LibWeb: Implement CSS sign()
2023-06-15 12:26:34 +01:00
stelar7
79fc4c8a82
LibWeb: Implement CSS abs()
2023-06-15 12:26:34 +01:00
Ben Wiederhake
85f822381f
LibWeb: Avoid copies while computing ARIA name/description
...
This also makes the cycle-detection work as intended.
2023-06-15 08:09:16 +02:00
Ben Wiederhake
a9b3aaa887
LibJS: Fix redundancy-detection when printing raw values
...
Note that this does not change cycle-detection.
This is also was an unnecessary copy, since there is an easier, less
memory-intense way to do cycle detection than copying the entire
visited_set all the time.
2023-06-15 08:09:16 +02:00
Ben Wiederhake
72756f09f4
LibIDL: Avoid unnecessary copies of imported paths
2023-06-15 08:09:16 +02:00
Ben Wiederhake
fe9e09fa3a
LibGUI: Avoid unnecessary copies of MenuItem pointer sets
2023-06-15 08:09:16 +02:00
Ben Wiederhake
c4a9afe31a
LibLine: Avoid unnecessary copies of style spans
2023-06-15 08:07:17 +02:00
Ben Wiederhake
d3a6512643
WindowServer: Properly handle OOM on drag-and-drop metadata copy
2023-06-15 08:07:17 +02:00
Ben Wiederhake
efbf6b7e5f
LibWeb: Make HashMap copy of inline CSS declarations fallible
2023-06-15 08:07:17 +02:00
Ben Wiederhake
592e6c89a5
LibGUI: Avoid unnecessary copies of clipboard metadata
2023-06-15 08:07:17 +02:00
Ben Wiederhake
342e1c6eab
Browser: Avoid unnecessary copies of temporary Storages
2023-06-15 08:07:17 +02:00
MacDue
a8b9130ceb
LibWeb: Support SVG vertical/horizontal lineto with multiple parameters
...
This now allows v 1 2 3 or h 1 2 3, which are treated like v 1 v 2 v 3
and h 1 h 2 h 3 respectively. This fixes the freeCodeCamp SVG logo.
2023-06-15 00:10:53 +02:00
Aliaksandr Kalenik
c48f60a98d
Tests/LibWeb: Add a flag to update expectation metadata in WPT runner
...
Adds `--update-expectations-metadata` that allows to automatically
rebuild metadata.txt file with test expectations.
2023-06-14 20:50:32 +02:00
Aliaksandr Kalenik
67de71d302
Tests/LibWeb: Do not fail WPT tests on unexpected results
...
Since both the WebDriver and Browser API are currently unstable during
WPT tests, it's a good idea to make sure that WPT passes even if there
are unexpected results. This will help avoid having failures marked as
red in the CI system caused by flaky WPT tests.
2023-06-14 20:50:32 +02:00
Andreas Kling
3a11b55286
LibWeb: Treat % max-width as none when containing block size indefinite
...
This is technically "undefined behavior" per CSS 2.2, but it seems
sensible to mirror the behavior of max-height in the same situation.
It also appears to match how other engines behave.
Fixes #19242
2023-06-14 20:12:02 +02:00
Timothy Flynn
ff1606ffaf
LibWeb: Implement seeking for audio tracks
2023-06-14 17:54:40 +02:00
Timothy Flynn
0c4b28faf3
LibWeb: Dispatch an addtrack event for newly created audio tracks
2023-06-14 17:54:40 +02:00
Timothy Flynn
6520a9a849
LibWeb: Support TrackEvent instances with an AudioTrack track type
2023-06-14 17:54:40 +02:00
Sam Atkins
11af5119b6
FileManager: Save the DirectoryView's visible columns
...
Since these are stored as numbers, and "1,2,3,5,6" is a bit meaningless
to anyone who looks at this code, the default set of visible columns is
provided as it was before, by them all being visible except a couple
that are specifically hidden.
The callback is wrapped in a debounce() so that if set_visible_columns
() is called, we'll just save the value once instead of doing so for
each column changed.
2023-06-14 17:53:59 +02:00
Sam Atkins
08edc872aa
LibCore+Applications: Put timeout parameter first in debounce()
...
This matches the parameter order for Core::Timer's factory methods,
stops clang-format freaking out so much, and just seems nicer to
me. :^)
2023-06-14 17:53:59 +02:00
Sam Atkins
4c349165f2
LibGUI: Add a callback when the visible columns of a TableView change
2023-06-14 17:53:59 +02:00
Sam Atkins
8eff3b1910
LibGUI: Add functions to get/set all a TableView's visible columns
...
Specifically, this is to make it easier to save and restore this state
to a config file. I had hoped to use the column names instead of their
IDs, but some columns have an empty string as their name so we wouldn't
be able to distinguish between those.
2023-06-14 17:53:59 +02:00