steve

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

1 時間 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 8738987e44 LibWeb: Return absolutized computed value for border width properties

1 時間 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

9 時間 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 743f8a3a0a CMake: Add macro to wrap C++ command line definitions for swiftc Similar to the existing macros for compile options and link options, this macro wraps the command line definitions for swiftc in a way that avoids warnings about conditional compilation flags not having values.
  • 8fd81c3338 LibGC+LibWeb+LibJS: Remove workaround for Swift boolean bitfield issue We're using a main snapshot everywhere, so we can yeet the workaround.
  • e73438e82c LibWeb: Clamp grayscale, invert, filter and opacity filter values to 1
  • e5f21b2f9c LibWeb: Set blur filter radius to 0px if omitted
  • 2ee86d1e18 LibWeb: Set hue-rotate angle to 0 degrees if omitted
  • これらの 9 コミットの比較を表示 »

9 時間 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

17 時間 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 28d5d982ce Everywhere: Remove unused private fields This commit removes the -Wno-unusued-private-field flag, thus reenabling the warning. Unused field were either removed or marked [[maybe_unused]] when unsure.
  • e43bb1410c LibWeb/CSS: Reject non-grouping-rules as descendants of style rules For example, `@font-face` is not only invalid inside a style rule, it's also invalid inside a child of a style rule. This fixes a test regression that we previously passed by accident.
  • 9cce791424 LibWeb/CSS: Only attempt to load valid `@font-face` fonts These must have a `font-family` and `src` set to be included in font-matching. Otherwise they should be ignored, but still exist in the CSSOM.
  • f87b454fa9 LibWeb/CSS: Parse `@font-face` descriptors as style values CSSFontFaceRule now stores its values as a CSSFontFaceDescriptors, with a ParsedFontFace produced on request. This is exposed via the `style` attribute, so we pass a lot of tests that try to read values from that. We have one test regression, which we passed by mistake before: The test wanted to ensure we don't allow `@font-face` nested inside other rules. We passed it just because we discarded any `@font-face` without a `font-family`. What we're supposed to do is 1) keep at-rules with missing required descriptors and just not use them, and 2) reject certain ones when nested. We may want to cache the ParsedFontFace in the future, but I didn't here because 1) it's called rarely, and 2) that would mean knowing to invalidate it when the CSSFontFaceDescriptors changes, which isn't obvious to me right now.
  • 3c9685ff1a LibWeb/CSS: Support creating ParsedFontFace from CSSFontFaceDescriptors
  • これらの 19 コミットの比較を表示 »

17 時間 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

1 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 67848a8c51 CI: Add nightly Swift jobs for both Linux and macOS
  • 382b574946 CI: Rework Swift build to be a separate job from normal macOS builds
  • 345cd6b9c9 CI: Add setup steps to install swift toolchain from swiftly Now that swiftly 1.0.0 is available, we can use it to install main snapshot toolchains on both Linux and macOS.
  • 195f0106a4 Meta: Add swiftly .swift-version to .gitignore
  • 1ed4e64575 CMake: Refactor FindSwiftTesting to find TestingMacros dir on macOS Turns out we need this directory to pass to the -frontend command for creating the interop header, so refactor the whole find module to find it on each platform.
  • これらの 12 コミットの比較を表示 »

1 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

1 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 12a2aebeb6 LibWeb: Move painting surface allocation into rendering thread Skia has a check in debug mode to verify that surface is only used within one thread. Before this change we were violating this by allocating surfaces on the main thread while using and destructing them on the rendering thread.
  • 3169747989 LibJS: Emit PutById instead of PutByValue when key is string literal Basically convert o["foo"]=x into o.foo=x when emitting bytecode. These are effectively the same thing, and the latter format opts into using an inline cache for the property lookups.
  • 4426c50a18 LibJS: Emit GetById instead of GetByValue when key is string literal Basically convert o["foo"] into o.foo when emitting bytecode. These are effectively the same thing, and the latter format opts into using an inline cache for the property lookups.
  • 976ccb9224 LibJS: Add fast path for Int32 values in ToBoolean It's not uncommon to branch on the boolean value of integers, so let's do that on the ToBoolean fast path.
  • 8de03e8cfd LibJS: Add fast paths in ToNumeric for booleans, null and undefined These are still in the out-of-line "slow path" for ToNumeric, but skipping all the coercion machinery can save us a lot of time.
  • これらの 9 コミットの比較を表示 »

1 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

1 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • ec590ef3e6 LibJS: Add builtin for Math.random()
  • 714e8aec8a LibJS: Add builtin for Math.imul()
  • ab5d5d8b50 LibGC: Avoid excessive bitfield use in GC::Cell We didn't actually save any space by making the Cell flags bitfields. In fact, it just forced us to do bit twiddling when accessing them.
  • 8f2ee01e6f LibJS: Avoid calling generic Instruction::length() during dispatch Since we know the exact type, we can avoid calling the generic lookup function that branches on instruction type.
  • 4b04e97feb LibWeb: Send IPC messages exceeding socket buffer through shared memory It turned out that some web applications want to send fairly large messages to WebWorker through IPC (for example, MapLibre GL sends ~1200KiB), which led to failures (at least on macOS) because buffer size of TransportSocket is limited to 128KiB. This change solves the problem by wrapping messages that exceed socket buffer size into another message that holds wrapped message content in shared memory. Co-Authored-By: Luke Wilde <luke@ladybird.org>
  • これらの 5 コミットの比較を表示 »

1 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

2 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • bc0ec84100 LibWeb: Don't queue rendering task for empty display lists
  • cf143cf118 LibWeb: Don't call flush() when no surface is passed in execute_impl() `DisplayListPlayer::execute_impl()` can receive null surface if it was invoked to rasterize nested display lists (we use them for iframes). In this case we should not call `flush()` by the end of execution and wait until outer display list execution will do that.
  • これらの 2 コミットの比較を表示 »

2 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

2 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 920170f60a LibWebView+UI: Remove native do-not-track setting
  • 1be3e7fd8a LibWebView: Add do-not-track setting to about:settings
  • 49dae536a7 Base: Replace bespoke input switch with native element Turns out we support <input type=checkbox switch>, so let's use it!
  • 04d44c9b26 Meta: Add workaround for CMake 4.0 policy minimum changes In CMake 4.0, having a minimum policy version set to less than 3.5 is a hard error at configure time. Add an override until the issue can be resolved in vcpkg itself.
  • 8e0786641f Meta: Explicitly enable zstd feature for tiff in vcpkg Without this, the library was pulling system libzstd implicitly.
  • これらの 27 コミットの比較を表示 »

2 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

2 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • a5df972055 LibWeb: Do not store network errors as a StringView This is very clearly a very dangerous API to have, and was causing a crash on Linux as a result of a stack use-after-free when visiting https://www.index.hr/. Fixes #3901
  • 82a2ae99c8 Everywhere: Remove DeprecatedFlyString + any remaining references to it This reverts commit 7c32d1e8a58fa689e4d661266a7589f01f632e89.
  • 4136d8d13e LibRegex: Use an interned string table for capture group names This avoids messing around with unsafe string pointers and removes the only non-FlyString-able user of DeprecatedFlyString.
  • これらの 3 コミットの比較を表示 »

2 日 前

steve steve/ladybirdrefs/notes/commits へのコミットをミラーから反映しました

3 日 前

steve steve/ladybirdmaster へのコミットをミラーから反映しました

  • 6bb0d585e3 LibJS: Elide function wrapper for class field literal initializers If a class field initializer is just a simple literal, we can skip creating (and calling) a wrapper function for it entirely. 1.44x speedup on JetStream3/raytrace-private-class-fields.js 1.53x speedup on JetStream3/raytrace-public-class-fields.js
  • fd147e6be0 LibWeb: Protect SkiaBackendContext with a mutex The Skia Ganesh backend we currently use doesn't support painting from multiple threads, which could happen before this change when the main thread used Skia to paint on the HTML canvas while the rendering thread was working on display list rasterization. Fixes https://github.com/LadybirdBrowser/ladybird/issues/4172
  • 24527b6ae3 LibWeb: Pass PaintingSurface into DisplayListPlayer::execute() Deleteing set_surface() makes DisplayListPlayer API a bit more intuitive because now caller doesn't have to think whether it's necessary to restore previous surface after execution, instead DisplayListPlayer takes care of it by maintaining a stack of surfaces.
  • b23b21fa4a UI/AppKit: Restore custom cursor shown on link hover This seems to have broken in some recent-ish AppKit update. When we add the status label to the view hierarchy / change its visibility state, the NSApp is resetting the cursor to the standard cursor. By overriding the cursorUpdate method to do nothing, we prevent this from happening.
  • b64d450f32 CI: Set correct architecture for JS artifact builds
  • これらの 5 コミットの比較を表示 »

3 日 前