Age | Commit message (Collapse) | Author |
|
|
|
Improve Space Analyzer 16x16 icon by adding some tinting.
|
|
|
|
Nag Mundari (1E4D0-1E4F9)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1E4D0.pdf
Geometric Shapes Extended (1F7D9)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1F780.pdf
Transport and Map Symbols (1F6DC)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1F680.pdf
CJK Unified Ideographs Extension H (3136B)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-31350.pdf
Symbols and Pictographs Extended-A (1FAAE, 1FABC, 1FA87)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1FA70.pdf
Alchemical Symbols (1F774-1F776, 1F77B-1F77F)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1F700.pdf
Latin Extended-G (1DF25-1DF2A)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1DF00.pdf
Lao (0ECE)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-0E80.pdf
Kannada (0CF3)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-0C80.pdf
Khojki (1123F-11241)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-11200.pdf
Small Kana Extension (1B132, 1B155)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-1B130.pdf
Devanagari Extended-A (11B00-11B09)
https://www.unicode.org/charts/PDF/Unicode-15.0/U150-11B00.pdf
|
|
This stops all GML files from appeared under the "Changes not staged
for commit" section of the commit message comment due to the changed
last-modified timestamp of the file.
|
|
Since gml-format is part of Lagom, it must be added to the post-lagom
linters section, or else it won't ever actually run.
|
|
This brings the existing GML files up to spec with the new requirements
|
|
|
|
Specifically:
* Properties must precede sub-object declarations.
* There shouldn't be any newlines in-between properties.
* There should be a newline in-between each sub-object.
* Object declarations must include the curly braces.
* There should be a newline between the properties of an object and
it's sub-objects.
|
|
This patch also adds CSS::Display::to_string() so we can log the
unimplemented CSS display value (if you have LIBWEB_CSS_DEBUG enabled).
|
|
getClientRects supposed to return a list of bounding DOMRect
for each box fragment of Element's layout, but most elements have
only one box fragment, so implementing it with getBoundingClientRect
is useful.
|
|
Implement DOMRectList that is used as a return type of
getClientRects functions on Element and Range.
|
|
Until now, some formatting contexts (BFC in particular) have been
assigning size to the root box. This is really the responsibility of the
parent formatting context, so let's stop doing it.
To keep position:absolute working, parent formatting contexts now notify
child contexts when the child's root box has been sized. (Note that the
important thing here is for the child root to have its final used height
before it's able to place bottom-relative boxes.)
This breaks flexbox layout in some ways, but we'll have to address those
by improving the spec compliance of FFC.)
|
|
We sometimes had a stale stacking context tree sitting around, causing
incorrect paints until the next full layout invalidation.
Fix this by simply rebuilding the stacking context tree when asked to.
|
|
BFC currently has a number of architectural issues due to it being
responsible for setting the dimensions of the BFC root.
This patch moves the logic for setting up the ICB from BFC to Document.
|
|
I saw what looked like a UAF of this URL in a RequestServer crash,
and it seems reasonable to make a copy here since we end up passing
them to Core::deferred_invoke().
|
|
|
|
This rule attempts to flag invisible Unicode characters which would
potentially be used by an attacker to hide code that humans can't see.
https://pvs-studio.com/en/docs/warnings/v1076/
AKA the "Trojan Source" attack: https://arxiv.org/abs/2111.00169
Unfortunately our `LibUnicode` source code contains these hidden
characters as they are part of the Unicode character set that the
library exposes. So we have, and will always have 100s of false
positives.
|
|
Had a look over this with a fresh head and noticed I was comparing the
current lexer position to the quote character, oops!
|
|
Since we were previously relying on Document::set_cookie in order to
set cookies received as a 'Set-Cookie' response header, we would ignore
any response header cookies in redirect (status code 3xx) responses.
While this behaviour is not strictly enforced in the specification,
most major browsers do set cookies in redirect responses, and some
sites (e.g. Cookie Clicker) rely on this behaviour.
Since cookies are stored per-site and not per-document, this behaviour
is achieved by simply decoupling the cookie set mechanism from it.
|
|
This string is only taken by const reference internally, so there's no
point in forcing the callers to copy the string.
|
|
As per RFC7231 the Location header field has different meanings for
different response status codes:
For 201 (Created) responses, the Location value refers to the primary
resource created by the request.
For 3xx (Redirection) responses, the Location value refers to the
preferred target resource for automatically redirecting the request.
|
|
|
|
This is a normative change in the ShadowRealm spec.
See: https://github.com/tc39/proposal-shadowrealm/commit/4ca634a
|
|
The previous implementation used argv and LibC to parse arguments,
it now uses the Arguments.strings interface to do so.
|
|
|
|
This mirrors the behaviour in Browser.
|
|
The MIME type can come from either the Content-Type header in the
response header list, or the overridden MIME type passed into
overrideMimeType()
This is required by Google Maps, which downloads blobs encoded
in x-user-defined format.
|
|
It's a pretty simple charset: the bottom 128 bytes (0x00-0x7F) are
standard ASCII, while the top 128 bytes (0x80-0xFF) are mapped to a
portion of the Unicode Private Use Area, specifically 0xF780-0xF7FF.
This is used by Google Maps for certain blobs.
|
|
This functions takes a user-provided decoder and will only use it if no
BOM is in the input.
If there is a BOM, it will ignore the given decoder and instead decode
the input with the appropriate Unicode decoder for the detected BOM.
This is only to be used where it's specifically needed, for example XHR
uses this for compatibility with deployed content. As such, it has an
obnoxious name to discourage usage.
|
|
This takes the input and sniffs it for a BOM. If it has the UTF-8 or
UTF-16BE BOM, it will return their respective decoder. Currently we
don't have a UTF-16LE decoder, so it will assert TODO if it detects
a UTF-16LE BOM. If there is no recognisable BOM, it will return no
decoder.
|
|
This allows you to ignore the Content-Type returned by the server and
always parse the content as if it's the given MIME type.
This will currently be used for allowing you to override the charset
of text responses.
|
|
This will be used by XHR to extract the Content-Type MIME type to
retrieve the charset.
|
|
This is a small utility that updates the target tests results for the
LibCpp parser and preprocessor regression tests.
It's handy to run after changing something in the output of either the
parser or the preprocessor.
|
|
Now FilterGallery shows the preview of the currently selected filter
applied on the currently active layer
|
|
This disables the GC, so the REPL doesn't run, but basic programs do
work.
|
|
|
|
|
|
|
|
|
|
This is just the expected return value of pthread_join() when it fails.
|
|
|
|
Apparently on VirtualBox the keyboard device refused to complete the
reset sequence. With longer delays and more attempts before giving up,
it seems like the problem is gone.
|
|
|
|
Previously, the build directory for building serenity components was a
temporary directory in /tmp which was generated whenever a different
serenity component was built.
Instead of doing that, Hack Studio now simply uses the Build/ directory
inside the Serenity repository, similar to what is done in host builds.
This makes it so we don't re-build when switching back and forth between
different components.
It also makes it easier to inspect the build products.
|
|
12F90-12FF2 https://www.unicode.org/charts/PDF/U12F90.pdf
|
|
|
|
Fixes #12405.
|
|
Implement IconBag method of organizing menubar icons from Browser.
|
|
According to RFC 6455 sections 5.5.2-5.5.3 Ping and Pong frames
can have empty "Application data" that means payload can be of size 0.
This change fixes failed "buffer.size()" assertion inside
of Core::Stream::write_or_error by not trying to send empty payload
in WebSocket::send_frame.
|