Emilio Cobos Álvarez
Emilio Cobos Álvarez
What do you think of extending our layout tests to test the layout of enums? I think at least that would signal that there's something wrong with the generated code...
Isn't this basically a combo of the existing three options: * ParseCallbacks::int_macro (per macro override) * default_macro_constant_type (global tweak) * fit_macro_constants (global tweak) Or am I missing something? Please reopen...
`--fit-macro-constant-types` and `--default-macro-constant-type` are accessible to the CLI. `int_macro` could be exposed perhaps.
While looking into implementing this in Firefox, I found that having that CSS rule for `` breaks Acid2. And it only works by chance in Chromium: https://issues.chromium.org/issues/465987920
The clang constant evaluation stuff doesn't work for arrays at all afaict, so this would need upstream changes to libclang to be fixable.
So for context, what I did on Gecko is: at the same time we try to focus `b` (after we've blurred `a`), if we realize we can't (because we have...
Ah, thanks! So the patch is [here](https://github.com/mozilla-firefox/firefox/commit/6a2fbb9803ba82a9bcb1dcb64e96556b9e55fae7) and basically involves fixing up the focus if we fired the blur event and that changed (or removed) our target so that we...
Ah, I was going to file an issue about this stuff because @dshin-moz and I were looking at some `:has()` interop-2023 failures, and found yours, @domenic :) Other things that...
With the CLI, a bit easier: t.h ```c typedef struct base_t { struct { int aaa; } __attribute__((aligned( __alignof__( struct {int aaa;} ) ))); } base_t; ``` output: ```rust /*...
Doesn't the existing blocklisting / allowlisting methods allow you enough control over this?