Karl Seguin
1acc0b0dc8
Merge pull request #1310 from lightpanda-io/zigdom-named-access
...
Named Access on the Window Object
2026-01-06 18:07:43 +08:00
Karl Seguin
645ec79fce
access page from context, document call_depth usage
2026-01-06 18:04:17 +08:00
Karl Seguin
97e897e80e
Merge pull request #1318 from lightpanda-io/node-self-replace
...
handle Node self replacement in insertBefore
2026-01-06 17:23:12 +08:00
Karl Seguin
6f72eeae65
Merge pull request #1319 from lightpanda-io/script_list_cleanup
...
Handle immediate call to Script.errorCallback
2026-01-06 17:22:14 +08:00
Karl Seguin
a845b2e35e
Handle immediate call to Script.errorCallback
...
It's possible for Script.errorCallback to be called as part of the call to
`client.request`. This happens because we eagerly pump the libcurl message loop
to get the request going ASAP. For very obvious failures (e.g. an invalid URL)
this means that the error callback can be called from `client.request`.
Previously, we were only adding the script to its list _after_ the call to
`client.request`, but the error handler tries to remove the script from the list
.
This commit changes the order so that the script is first added to the list
and then the request is made.
2026-01-06 17:03:27 +08:00
Pierre Tachoire
b164ffeb95
handle Node self replacement in insertBefore
2026-01-06 09:49:08 +01:00
Karl Seguin
7ba34af884
Merge pull request #1317 from lightpanda-io/zigValueToJs-opts-pass-down
...
pass down opts to zigValueToJs
2026-01-06 16:36:44 +08:00
Pierre Tachoire
7f543ac7c8
pass down opts to zigValueToJs
2026-01-06 09:35:38 +01:00
Karl Seguin
0b221615b7
Merge pull request #1315 from lightpanda-io/replaceChild-itself
...
fix Node.replaceChild when of new child equals old
2026-01-06 08:00:03 +08:00
Pierre Tachoire
f81a9b54a7
fix Node.replaceChild when of new child equals old
2026-01-05 21:48:59 +01:00
Muki Kiboigo
05da040ce1
increment call_depth on callWithThis
2026-01-05 09:27:17 -08:00
Muki Kiboigo
b911051842
add named access shadowing test
2026-01-05 09:08:57 -08:00
Muki Kiboigo
a67f46b550
add named access on the Window object
2026-01-05 08:41:42 -08:00
Karl Seguin
dcde19de3c
Merge pull request #1309 from lightpanda-io/zigdom-anchor-click
...
Anchor Click
2026-01-05 12:30:30 +08:00
Muki Kiboigo
a8b4e8c1bc
fix handleclick for hash href on anchor
2026-01-04 20:28:34 -08:00
Karl Seguin
7b0e256408
copy history test from legacy
2026-01-05 10:12:41 +08:00
Karl Seguin
5a974f0d77
Merge pull request #1282 from lightpanda-io/nikneym/performance-observer
...
Support `PerformanceObserver` API
2026-01-05 07:52:58 +08:00
Halil Durak
f7fe8d00fb
add a PerformanceObserver test
2026-01-04 18:09:45 +03:00
Halil Durak
946b6d8226
PerformanceObserver changes
2026-01-04 18:09:28 +03:00
Karl Seguin
25366f0e47
Support multiple blocking scripts waiting for the same response
...
I thought we eliminated this from being possible, but I guess not. It seems to
be related to multiple async scripts direct or indirectly (or a specific
combination?) waiting for the same synchronous script. The first async script
to block, grabs it and deletes it, making it invalid for the next.
This puts back a counter on blocking scripts which I took out when I thought
this could no longer happen.
2026-01-02 20:57:29 +08:00
Karl Seguin
562e8e8d87
ignore empty pseudo_element in getComputedStyle
2026-01-02 16:47:04 +08:00
Karl Seguin
11ff9ed366
update log src for fetch (xhr -> fetch)
2025-12-30 17:08:27 +08:00
Halil Durak
9a9f2ab94b
rm ring_buffer.zig
2025-12-30 11:46:58 +03:00
Karl Seguin
27048fb06d
Merge pull request #1305 from lightpanda-io/nikneym/observer-lists
...
prefer `DoublyLinkedList` for storing `MutationObserver`s in `Page`
2025-12-30 16:43:40 +08:00
Halil Durak
e103ee1ffa
prefer low priority queue to execute performance observer
2025-12-30 11:43:24 +03:00
Halil Durak
acebbb9041
don't prefer microtask queue for execution
...
This still needs investigation. Spec doesn't refer usage of microtask queue for this, yet the current behavior doesn't match to Firefox and Chrome.
2025-12-30 11:43:24 +03:00
Halil Durak
0264c94426
proper interested function
2025-12-30 11:42:21 +03:00
Halil Durak
88de72a9ea
core performance observer logic
...
Heavily based on MutationObserver and IntersectionObserver.
2025-12-30 11:42:21 +03:00
Halil Durak
9306adc786
add an overwriting ring buffer implementation
2025-12-30 11:42:20 +03:00
Halil Durak
43c30f8a34
avoid inline + don't initialize node
2025-12-30 11:39:09 +03:00
Karl Seguin
7c7240d5ab
Try to protect against invalid use of document.write
...
Specifically, try to block multiple document.write which, when combined, have
multiple html documents.
2025-12-30 10:07:56 +08:00
Karl Seguin
169582c992
DOMRect constructor
...
More default computed styles (color and backgroundColor)
HTMLMetaElement properties
Case-insensitive findAdjacentNodes position parameter
Allow computedStyle pseudo_element parameter (ignore, log not implemented)
Window.isSecureContext always returns false
2025-12-30 09:33:00 +08:00
Karl Seguin
7b74161e9c
Merge pull request #1270 from lightpanda-io/wp/mrdimidium/css-parsing
...
CSS parsing
2025-12-30 07:05:56 +08:00
Karl Seguin
633e98c8f4
Merge pull request #1306 from lightpanda-io/generic-tags
...
add more generic tags
2025-12-30 07:01:52 +08:00
Pierre Tachoire
5743c4fc93
add more generic tags
2025-12-29 18:15:02 +01:00
Nikolay Govorov
9984b3445f
Add css tokenazer for parse style attribute
2025-12-29 15:06:07 +00:00
Pierre Tachoire
90a7e96181
Merge pull request #1301 from lightpanda-io/backport-zig-versions
...
update ci scripts
2025-12-29 16:00:36 +01:00
Pierre Tachoire
00d4ac6137
update ci scripts
...
* use checkout v6
* remove useless target from Makefile
2025-12-29 15:17:19 +01:00
Halil Durak
ee432c54b8
prefer DoublyLinkedList for storing MutationObservers in Page
2025-12-29 16:18:09 +03:00
Pierre Tachoire
76ec3eb738
Merge pull request #1303 from lightpanda-io/Makefile
...
build: standardize ansi escape sequences in makefile
2025-12-29 13:42:02 +01:00
Pierre Tachoire
37832c63a4
Merge pull request #1302 from lightpanda-io/backport-graceful-shutdown
...
Add a synchronous signal handler for graceful shutdown
2025-12-29 13:41:47 +01:00
Pierre Tachoire
d1c33f0872
build: standardize ansi escape sequences in makefile
2025-12-29 12:55:56 +01:00
Pierre Tachoire
4684b8611d
Add a synchronous signal handler for graceful shutdown
2025-12-29 12:43:52 +01:00
Karl Seguin
f4961ee8b2
Merge pull request #1299 from lightpanda-io/cdp-inserttext
...
backport cdp Input.insertText
2025-12-29 19:11:46 +08:00
Pierre Tachoire
27f6f4243f
Apply suggestions from code review
...
Co-authored-by: Karl Seguin <karlseguin@users.noreply.github.com >
2025-12-29 12:08:07 +01:00
Karl Seguin
dcf1d34889
Merge pull request #1292 from lightpanda-io/nikneym/script-execution-changes
...
Run microtasks after each script execution
2025-12-29 18:42:03 +08:00
Pierre Tachoire
76f30dc985
zig fmt
2025-12-29 11:40:32 +01:00
Pierre Tachoire
2d6c37fa6f
handle input selection when keydown
2025-12-29 11:40:32 +01:00
Pierre Tachoire
3e52abf471
cdp: add input.insertText
2025-12-29 11:40:27 +01:00
Pierre Tachoire
d697944b5a
add Input.select()
2025-12-29 10:35:26 +01:00