Commit Graph

8347 Commits

Author SHA1 Message Date
Pierre Tachoire
fbb93e7d53 cdp: implement a fake Page.printToPDF
Similar to Page.captureScreenshot
This is useful for tools integration calling this method, returning a
fake result instead of an error.
2026-04-20 16:52:24 +02:00
Adrià Arrufat
7328990777 agent: add --task-attachment for one-shot mode 2026-04-20 16:13:18 +02:00
Karl Seguin
ef2e42292f Merge pull request #2195 from lightpanda-io/import_string
@import(".....string.zig").String => lp.String
2026-04-20 21:58:03 +08:00
Halil Durak
780bf8cbc5 Cookie: update tests 2026-04-20 16:47:28 +03:00
Halil Durak
9ed39e4c3e Cookie: check for either exact match or dot-prefixed domain 2026-04-20 16:47:20 +03:00
Adrià Arrufat
f009b327f8 agent: synthesize final answer if tool budget exhausted 2026-04-20 13:27:10 +02:00
Karl Seguin
e7be3c8b14 still trying to get this test to pass 2026-04-20 18:57:45 +08:00
Karl Seguin
55d7bae943 more busy timeout tricks 2026-04-20 18:42:55 +08:00
Karl Seguin
fcd3d1cd14 Use unsafe journal_mode during Pool test
Can't use WAL, as it thread sanitizer reports false positives. The default,
delete, causes busy timeouts. Let's try the unsafe memory!
2026-04-20 18:14:29 +08:00
Karl Seguin
b226a9ed52 Disable WAL mode for Sqlite pool test
It seems like there are known false positives with thread sanitizer and sqlite.

(There are various references to this in sqlite's wal.c and also possibly
related https://bugzilla.mozilla.org/show_bug.cgi?id=1153409
2026-04-20 17:16:42 +08:00
Karl Seguin
6d0003ad2b Sqlite
This adds an app.storage which is a union around configurable storage engine
(currently, only sqlite).

It is _not_ being used anywhere right now. The goal is to get feedback on
the implementation and then move cache to it.

This doesn't expose a generic query API. The goal is that the storage will
expose high level methods, e.g. `cacheGet(req: CacheGetRequest)` and every
storage engine will translate the `storage.CacheGetRequest` as needed.

A thin wrapper around the Sqlite C api is included, e.g. exec(SQL, .{args}) a
`rows` and `row` fetcher. A connection pool is included. By default, an
in-memory DB is currently created. And a `migrations` table with an id of `1`
is created/inserted. I don't imagine needing fancy migratations.
2026-04-20 17:13:06 +08:00
Karl Seguin
b08ae07598 build with sqlite3, just to see how it behaves in the CI 2026-04-20 15:43:49 +08:00
Adrià Arrufat
efc2b5d236 Merge branch 'main' into agent 2026-04-20 09:37:36 +02:00
Karl Seguin
1fade8d375 Merge pull request #2193 from lightpanda-io/worker_apis
Enable more WebAPIs for Workers
2026-04-20 15:30:54 +08:00
Karl Seguin
782ed50c83 @import(".....string.zig").String => lp.String
Similar change to https://github.com/lightpanda-io/browser/pull/2194 but for
String.
2026-04-20 15:29:37 +08:00
Karl Seguin
a8490b1803 Enable more WebAPIs for Workers
Request, Response, Headers and FormData.
2026-04-20 15:10:47 +08:00
Karl Seguin
c159be503a Merge pull request #2194 from lightpanda-io/import_log
Change all @import("...../log.zig") to const log = lp.log;
2026-04-20 15:07:15 +08:00
Adrià Arrufat
6d533e0c11 Merge branch 'main' into agent 2026-04-20 08:28:34 +02:00
Karl Seguin
6e02e41ad3 zig fmt 2026-04-20 14:22:48 +08:00
Karl Seguin
3e8b63aa1b Merge pull request #2184 from lightpanda-io/perf-axnode-scratch-arena
ax: route AXNode.Writer scratch allocations through a dedicated arena
2026-04-20 14:22:04 +08:00
Adrià Arrufat
983e592b43 cdp: use page arena pool for AXNode writer 2026-04-20 07:42:08 +02:00
Karl Seguin
2d20e57f80 Change all @import("...../log.zig") to const log = lp.log;
@import("lightpanda") where needed.

Would also like to do this for String, Page, Session and js which all stand out
as types that are use across the codebase.

I know that a few devs are doing this in new work and I haven't heard anyone
voice an objection.
2026-04-20 12:40:04 +08:00
Karl Seguin
908e075974 Merge pull request #2192 from lightpanda-io/fix_document_write_tests
Fix document.writeln test
2026-04-20 10:43:24 +08:00
Karl Seguin
1c8c68f3d9 Fix document.writeln test
Broken scoping.
2026-04-20 10:25:58 +08:00
Karl Seguin
3ceb28eab3 Merge pull request #2190 from lightpanda-io/async_test
Remove remaining "legacy" async tests.
2026-04-20 10:25:19 +08:00
Karl Seguin
98abe3fc92 Merge pull request #2191 from lightpanda-io/feat/timer-string-handler
Feat/timer string handler
2026-04-20 10:11:34 +08:00
Karl Seguin
728f2f2945 uncomment and fix some animation tests 2026-04-20 10:11:00 +08:00
Karl Seguin
20531b0f87 try to fix flaky CI test 2026-04-20 10:06:09 +08:00
Karl Seguin
9a6875f1b5 Prefer union over js.Value type checking
Allow mapping js input to a js.String (previously, had to be either a []const u8,
an SSO, or a js.Value). Allow compileFunction to be called directly with a
js.String.
2026-04-20 09:51:42 +08:00
Karl Seguin
6e989ad5b8 Remove remaining "legacy" async tests.
Follow up on https://github.com/lightpanda-io/browser/pull/2179 to remove
the remaining "legacy" async tests (I didn't realize there were only 2 more
files, should have done it all in that commit). Also, slightly improve how
these async tests work in Chrome/FF.
2026-04-20 09:35:33 +08:00
Adrià Arrufat
9004787398 Merge branch 'main' into agent 2026-04-19 19:33:45 +02:00
Karl Seguin
3ad683121b Merge pull request #2183 from lightpanda-io/wpt_extensions
Add WPT extensions
2026-04-19 07:08:34 +08:00
Pierre Tachoire
b4cd263459 Merge pull request #2188 from luckyyyyy/feat/document-writeln
feat(document): implement document.writeln
2026-04-18 14:19:42 -04:00
Adrià Arrufat
f21c76ea17 agent: support multi-command self-heal replacements 2026-04-18 17:12:10 +02:00
Adrià Arrufat
d53f1d975e agent: support triple-quoted strings in Pandascript 2026-04-18 16:34:54 +02:00
Adrià Arrufat
2d808336df Merge branch 'main' into agent 2026-04-18 08:28:03 +02:00
Karl Seguin
24b86a847c Merge pull request #2179 from lightpanda-io/websocket_fixes
Websocket fixes.
2026-04-18 10:06:12 +08:00
Karl Seguin
0b598cfcc5 Merge pull request #2180 from lightpanda-io/update_html5ever
This updates html5ever and the other Rust dependencies.
2026-04-18 10:02:24 +08:00
Karl Seguin
fb9e1d91a5 Merge pull request #2181 from lightpanda-io/blob_constructor
Support more types in new Blob(...)
2026-04-18 10:02:20 +08:00
Karl Seguin
4b701aa978 Merge pull request #2185 from lightpanda-io/cookies_and_friends_fix
Improve Cookie parsing rules
2026-04-18 09:40:50 +08:00
Pierre Tachoire
360a3abfe1 Merge pull request #2186 from mvanhorn/docs/2166-alpine-glibc-note
docs: note glibc requirement in Linux install instructions
2026-04-17 21:25:43 -04:00
William Chan
5041450fcf feat(window): accept DOMString handler in setTimeout/setInterval
The HTML spec defines `TimerHandler` as `Function or DOMString`, and
the string form is still widely used by legacy sites and server-rendered
pages (e.g. clocks that do `setInterval("updateTime()", 1000)`).

Previously the binding signature required `js.Function.Temp`, so passing
a string threw `TypeError: invalid argument` and aborted page scripts.

Accept `js.Value.Temp` instead, then resolve the handler per spec:
  * Function -> persist as-is (unchanged behavior).
  * String   -> compile as the body of an anonymous function via
                `Local.compileFunction`, mirroring what the existing
                `Context.stringToPersistedFunction` helper does for
                HTML attribute event handlers.
  * otherwise -> `InvalidArgument` (TypeError, same as before).

Tests added to window/timers.html:
  * setTimeout(string) runs the compiled code.
  * setInterval(string) fires at least once and is cancellable.
  * non-function / non-string handler still throws TypeError.

Spec: https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers
2026-04-18 07:26:12 +08:00
William Chan
5b8592de5a feat(document): implement document.writeln
Document.writeln was not registered on the DOM prototype, so legacy
scripts that rely on it (e.g. script loaders that inject <script> tags
via `document.writeln`) crashed with `document.writeln is not a
function` and prevented the rest of the page from running.

Per HTML spec, writeln runs the document write steps with the joined
argument text followed by a U+000A LINE FEED character. Implement it
by sharing the existing write pipeline so all InvalidStateError and
parser behavior is identical to write().

Tests added to document/write.html covering:
- writeln appends a trailing newline text node after the written nodes
- multiple arguments are concatenated before the newline is appended

Spec: https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-document-writeln
2026-04-18 07:24:30 +08:00
Adrià Arrufat
a17490c29a Merge branch 'main' into agent 2026-04-17 15:23:04 +02:00
Adrià Arrufat
3e49b3feae cdp: centralize scratch arena reset in AXNode 2026-04-17 15:22:45 +02:00
Adrià Arrufat
be1e5e2a9d Merge branch 'main' into perf-axnode-scratch-arena 2026-04-17 15:00:56 +02:00
Matt Van Horn
b7ed8447a9 docs: note glibc requirement for Linux release binaries
Closes #2166

The Linux release binary is linked against glibc, so musl-based distros
(Alpine and similar) hit 'cannot execute: required file not found' on
first run because the glibc dynamic linker is missing.

Adds a note to the install section directing Alpine users to a
glibc-based base image or the build-from-sources path.
2026-04-17 09:00:11 -04:00
Adrià Arrufat
a7f47b6916 Merge pull request #2182 from lightpanda-io/fix/aria-snapshot-noise
Fix `ariaSnapshot` noise vs Chromium
2026-04-17 14:33:53 +02:00
Karl Seguin
e6a190c72d Improve Cookie parsing rules
This commit was focused on making small changes to cookie parsing in order to
improve a handful of WPT cases.

Protects against nameless cookies that have a value with certain prefixes (e.g.
`__Secure-`) which could be pased into an incorrect prefix.

It allows tabs in cookie names/values.

It enforces that certain prefix have certain settings.

Along the way:
- Added window.origin
- Ensure URL passed to Request is escaped
- Added log on fetch error
- made --dump wpt only list non-passing results
2026-04-17 19:12:19 +08:00
Adrià Arrufat
b42251d750 ax: route AXNode.Writer scratch allocations through a dedicated arena 2026-04-17 12:53:43 +02:00