Yuri Pereira Constante

Results 9 comments of Yuri Pereira Constante

So it seems the matchBase issue is the same as in #162, but what about the second case, with the `./` and no matchBase?

Node 18 LTS started this week and `fetch` is available without flags, but its classified as experimental https://nodejs.org/dist/latest-v18.x/docs/api/globals.html#fetch

Can you double check if this is the actual HTML the browser is receiving? This is the raw html for the example you shared ``` > header |> Floki.raw_html(pretty: true)...

I think you're checking a different element from the one you shared The html structure changes between tables, depending on the displayed data there are nested spans, but comparing the...

I've made a custom annotation to implement this behavior using the `junitparams.custom.CustomParameters` annotation. Currently it's not the most beautiful code because I had to copy a lot of code from...

`iodata` support would be useful on Phoenix LiveView tests, for example. [Today Phoenix has the content stored as iodata and converts to binary just to call parse](https://github.com/phoenixframework/phoenix_live_view/blob/main/lib/phoenix_live_view/test/dom.ex#L277-L279), and because `mochi_html`...

There are still some cases we can enable this optimization without too many changes, like the remaining combinators depending on the selector, and pseudo-classes that don't require the tree.

Since the function is recursive, this will probably cause us to use the expensive traversal in some cases in which we could use the fast one. I think we should...