Emilio Cobos Álvarez
Emilio Cobos Álvarez
See https://github.com/eqrion/cbindgen/pull/587#issuecomment-703466832 This is not an issue for C mode because we use macros which are terrible but don't have this problem. But for C++, where we try to generate...
#589 adds a test that looks like: ```rust /// cbindgen:enum-class=false #[repr(C)] pub enum E { V, } use E::*; pub const C2: E = V; ``` It seems it should...
This Rust code: ```rust #[repr(C, u8)] pub enum S { Leaf(i32), Parent(Box), } #[no_mangle] pub extern "C" fn root(f: &S) {} ``` only generates a forward declaration of `S`, because...
#320 wouldn't have needed to be such a massive change if we could, for example, wildcard on component names. It'd be nice if we could automatically include all the `Layout:...
This would be sort of a pain, but it's the only way we see us generating more correct code for all the partial template specialization madness we're going through with...
### What is the issue with the HTML Standard? https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements says: > The [details](https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element) element is expected to render as a [block box](https://drafts.csswg.org/css2/#block-boxes%E2%91%A0). This effectively ignores `display` set on the...
https://html.spec.whatwg.org/#the-dialog-element: > Removing the open attribute will usually hide the dialog. However, doing so has a number of strange additional consequences: > * The close event will not be fired....
See reasoning in #4144, which still applies. Other projects like bindgen etc also use it by default, and this would allow them to move to stable rust. Fixes #3368 again.
**Before submitting your pull request** - [x] I agree to license my code under the [MPL 2.0 license](https://www.mozilla.org/en-US/MPL/2.0/). - [x] I rebased my work on top of the main branch....
See https://bugzilla.mozilla.org/show_bug.cgi?id=1590837 / https://github.com/jquery/jquery/issues/4529. In the following test-case: ```html var result = document.getElementById('result'); var tr = document.getElementById('tr'); result.innerHTML = getComputedStyle(tr).width; ``` Gecko reports 42px. Blink/WebKit report 22px. EdgeHTML reported auto....