Emilio Cobos Álvarez
Emilio Cobos Álvarez
If you do: ``` div { color: green; @media (width > 0) { color: red; background: red; } background: green; } ``` My understanding is that per spec the div...
Right now per spec it doesn't, but that doesn't match implementations, and it makes sense for it to affect it. We have tests for this (css/css-masking/clip-path/clip-path-path-with-zoom.html etc), so I think...
We, in Firefox, are going to import zerocopy. We require having our sources vendored, and this crate is no exception. However this crate bundles a lot of tests in the...
```rust /// The object allocated by an Arc #[repr(C)] struct ArcInner { count: atomic::AtomicUsize, #[cfg(feature = "track_alloc_size")] alloc_size: usize, data: T, } ``` The derived eq/neq implementations still use `alloc_size`,...
See discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1879746 I don't know how to regenerate turn.min.js, help there would be appreciated.
### What is the issue with the Quirks Mode Standard? https://quirks.spec.whatwg.org/#the-active-and-hover-quirk has a list of conditions that doesn't keep up with new CSS features. It seems implementations do subtly different...
https://github.com/saadtazi/firefox-profile-js/blob/397764d1d6868cecabbe4a29a144d1b4f1ef7e49/lib/firefox_profile.js#L32 Changes the behavior of `target="_blank"` links. This is problematic for two reasons: * It doesn't work on Android (see https://github.com/mozilla/web-ext/issues/1592 for example) * Dependent libraries have very confusing behavior...
See https://hg.mozilla.org/integration/autoland/rev/5f7c1a3d8e77, for example, which is for https://github.com/servo/servo/pull/17560. Can we prevent this somehow?
See, for example, https://github.com/servo/saltfs/pull/512#issuecomment-254980396, where I replied by mail to a comment, and homu thought that I had approved the PR.
Some uniform functions asume that multiples of x elements are passed to them. It could be worth it to add `debug_assert!`s to those functions to ensure they're been called correctly....