Truly independent web browser
Find a file
Timothy Flynn 9f3526b080
Some checks are pending
CI / Lagom (arm64, Sanitizer_CI, false, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (x86_64, Fuzzers_CI, false, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, false, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, true, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (arm64, macos-15, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (x86_64, ubuntu-24.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
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
LibWeb: Handle non-OK network responses in <object> elements
We were previously only testing for network errors, which includes e.g.
DNS resolution and connection errors. It does not include e.g. HTTP 404
responses, which is exercised by Acid 2.
2025-05-21 12:13:20 -06:00
.devcontainer Devcontainer: Update to llvm 20 2025-05-14 19:43:52 -04:00
.github CI: Do not install clang in the JS benchmarks workflow 2025-05-15 18:53:49 +02:00
AK AK: Add initial support for AK testsuite on Windows 2025-05-20 10:58:43 -06:00
Base/res LibWebView: Disable autocomplete when search is disabled 2025-05-11 11:48:02 -04:00
Documentation Documentation: Show how to generate reference screenshots for tests 2025-05-20 10:48:03 -04:00
Libraries LibWeb: Handle non-OK network responses in <object> elements 2025-05-21 12:13:20 -06:00
Meta Meta: Add addr2line command to ladybird.py 2025-05-21 11:35:20 -06:00
Services LibWeb: Prefer using equals_ignoring_ascii_case 2025-05-21 13:45:02 +01:00
Tests LibWeb: Handle non-OK network responses in <object> elements 2025-05-21 12:13:20 -06:00
Toolchain Meta: Add build command to ladybird.py 2025-05-21 11:35:20 -06:00
UI headless-browser: Allow specifying the path to the saved screenshot 2025-05-20 10:48:03 -04:00
Utilities AK: Add initial support for AK testsuite on Windows 2025-05-20 10:58:43 -06:00
.clang-format Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
.clang-tidy
.clangd
.editorconfig
.gitattributes
.gitignore Meta: Add build command to ladybird.py 2025-05-21 11:35:20 -06:00
.gn
.mailmap
.pre-commit-config.yaml
.prettierignore
.prettierrc
.swift-format
.ycm_extra_conf.py
CMakeLists.txt CMake: Remove duplicate sanitizer configuration 2025-05-14 02:05:12 -06:00
CMakePresets.json Meta: Add build command to ladybird.py 2025-05-21 11:35:20 -06:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md Documentation: Fix Ladybird's documentation url 2025-05-20 15:53:48 -04:00
ISSUES.md
LICENSE
README.md
SECURITY.md
vcpkg-configuration.json
vcpkg.json Meta: Update simdutf to version 7.0.0 2025-05-03 11:21:10 -04:00

Ladybird

Ladybird is a truly independent web browser, using a novel engine based on web standards.

Important

Ladybird is in a pre-alpha state, and only suitable for use by developers

Features

We aim to build a complete, usable browser for the modern web.

Ladybird uses a multi-process architecture with a main UI process, several WebContent renderer processes, an ImageDecoder process, and a RequestServer process.

Image decoding and network connections are done out of process to be more robust against malicious content. Each tab has its own renderer process, which is sandboxed from the rest of the system.

At the moment, many core library support components are inherited from SerenityOS:

  • LibWeb: Web rendering engine
  • LibJS: JavaScript engine
  • LibWasm: WebAssembly implementation
  • LibCrypto/LibTLS: Cryptography primitives and Transport Layer Security
  • LibHTTP: HTTP/1.1 client
  • LibGfx: 2D Graphics Library, Image Decoding and Rendering
  • LibUnicode: Unicode and locale support
  • LibMedia: Audio and video playback
  • LibCore: Event loop, OS abstraction layer
  • LibIPC: Inter-process communication

How do I build and run this?

See build instructions for information on how to build Ladybird.

Ladybird runs on Linux, macOS, Windows (with WSL2), and many other *Nixes.

How do I read the documentation?

Code-related documentation can be found in the documentation folder.

Get in touch and participate!

Join our Discord server to participate in development discussion.

Please read Getting started contributing if you plan to contribute to Ladybird for the first time.

Before opening an issue, please see the issue policy and the detailed issue-reporting guidelines.

The full contribution guidelines can be found in CONTRIBUTING.md.

License

Ladybird is licensed under a 2-clause BSD license.