rgret-dev

Results 27 issues of rgret-dev

1. Navigate to a site 2. In the same tab, navigate to a separate domain 3. Observe back button is disabled cc: @trflynn89

bug
regression

1. Open https://news.ycombinator.com 2. Zoom 3. Observe main content sticks to the left instead of staying centered Bisected to https://github.com/LadybirdBrowser/ladybird/commit/d8ff71fbb543653cc033ec7d611a917500015c3b cc: @kalenikaliaksandr

After the upgrade to curl 8.13.0, the `CURLOPT_RESOLVE` option now supports replacing IPv6 hosts. This allows us to navigate using the IPv6 address directly. Previously, you would see "an unexpected...

This script was rewritten in Python in commit: https://github.com/LadybirdBrowser/ladybird/commit/c92d9cce42037b39e2a982ece8cdec1cb45d5d71 Since it just executes the Python anyway, remove it and do that in CI ourselves.

Some websites (e.g. https://schwab.com) return incomplete certificate chains which causes a SSL verification error in Ladybird since curl doesn't have support for AIA yet. Although this is technically a configuration...

enhancement
web compatibility
networking

When using attribute selectors, e.g.: ```html :root { --bg-color: #ffffff; } [data-theme="dark"] { --bg-color: #000000; } body { background-color: var(--bg-color); } document.addEventListener("DOMContentLoaded", function () { // Light (default): should log...