Andreu Botella
Andreu Botella
Hey, sorry everyone for the radio silence over here. We've been discussing some of the details of the web integration in the AsyncContext Matrix channel and in our biweekly meetings,...
As an update: we're currently looking into whether it's possible to hook into the HTML spec's event loop mechanisms, in particular ["queue a task"](https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task) and ["in parallel"](https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel) to automatically propagate...
I updated this document to prefer using the dispatch context, and only use the registration context if the API in question can never have a dispatch context. I replaced most...
The basic web integration document PR has been merged: https://github.com/tc39/proposal-async-context/blob/master/WEB-INTEGRATION.md There's an additional proposed API at tc39/proposal-async-context#107 that isn't yet incorporated into that document because there are still some open...
As discussed in the last WHATNOT meeting (https://github.com/whatwg/html/issues/11826#issuecomment-3472399560), the AsyncContext web integration will be running through the [WHATWG Stages process](https://whatwg.org/stages), since it is large and complicated enough, and the feedback...
> 1. What interop tests if any this affects: > > * https://github.com/web-platform-tests/wpt/tree/ec979384f0340b8d18c3512f02f42b65bd5f456c/css/css-overflow/line-clamp There are some additional tests for the parsing of `line-clamp`-related properties in https://github.com/web-platform-tests/wpt/tree/ec979384f0340b8d18c3512f02f42b65bd5f456c/css/css-overflow/parsing. There are also some...
There is also a WIP implementation in Chrome. ~~It's not under the experimental web platform features flag yet, but you can test it with the `--enable-blink-features=CSSLineClamp` command-line flag.~~ Edit: My...
For the record, it doesn't seem like `duplex: "full"` will be specified in the WHATWG fetch spec anytime soon. However, [WinterCG](https://wintercg.org/) is working on [a fork of the fetch spec](https://github.com/wintercg/fetch)...
The oxc parser actually parses `"\udf06"` the same as `"\\udf06"`, so there's no way to distinguish these two strings when printing. I ran into this issue because I'm working on...
Similarly to how not all `&[u8]` are valid UTF-8 strings, not all `&[u16]` are valid UTF-16 strings. However, this is the way UTF-16 is defined today. In the early days...