Emilio Cobos Álvarez
Emilio Cobos Álvarez
The autofilled value is not supposed to be exposed to the page. It seems somewhat tricky to do this with `` for example.
``` $ ./mach try again estimates: Runs 329 tasks (304 selected, 25 dependencies) estimates: Total task duration 5 days, 3:05:14 estimates: In the top 13% of durations estimates: Should take...
Testcase is: ```html document.writeln(test.style.cssText); ``` Which serializes to: ``` margin: 10px 60px 40px 50px; margin-block-start: 20px; margin-inline-start: 30px; ``` Which is not idempotent. cc @FremyCompany
Consider [this test-case](https://bug1795661.bmoattachments.org/attachment.cgi?id=9298884). Scroll down, then move the focus between the two `` elements. The scroll position jumps, which feels a bit unexpected, but it's sorta reasonable if you take...
https://drafts.csswg.org/css-color-5/#resolving-contrast has some rules to resolve `color-contrast()` values, however I'm not sure they are clear or they match what implementations want or can do. https://github.com/web-platform-tests/wpt/issues/34158 is an example of this,...
Consider this test-case ([live](https://crisal.io/tmp/tr-hit-test.html)): ```html table { border-spacing: 100px; border: 1px solid #ccc; } tr { border: 1px solid #ddd; background-color: blue; } td { border: 1px solid #eee; background-color:...
See https://bugzilla.mozilla.org/show_bug.cgi?id=1756343
Cbindgen headers can get big. It may make sense to allow outputting a forward-declaration version of the header that declares the relevant types, though I haven't dug into how much...
cc @jorendorff (not sure of a great fix for this, for the record, filing so that I don't lose track of it). I wanted to do something like this today:...
https://github.com/eqrion/cbindgen/pull/633 implements conditional fields, but doesn't implement deriving methods on them because write_vertical_source_list doesn't support this.