Guillaume
Guillaume
I went through issues related to this one, and read the following from a meeting transcript: > jdaggett: are people actually using this functionality, that's been there since CSS 2....
@svgeesus, can you please update the `initial` field from `auto` to `normal`? https://github.com/w3c/csswg-drafts/blob/a2e50cb70605eac89e4bcb30ca7809633e4b79ec/css-fonts-4/Overview.bs#L6612 **EDIT:** fixed by https://github.com/w3c/csswg-drafts/commit/87a2abdffbb4df551147116b9dbff4b712ebee5e.
> It may just be simpler to say that range restrictions with dimensions require one side to be `0` (optionally with a unit) and the other side to be `∞`...
There is also this part in [CSS Syntax 3 - 9.2. At-rules](https://drafts.csswg.org/css-syntax-3/#at-rules): > At-rules are used to: [...] declare style information that is not associated with a particular element, such...
> > If I set out to distinguish a property/descriptor based on whether it applies to an element or an at-rule, I'm in trouble. > > What exactly is your...
Also, if you allow me to ask the following question here, can you please confirm that CSS-wide keywords and custom variables can only apply to descriptors corresponding to properties? Ie....
Hello, I created #140 before truly understanding this morning what this PR was about. The initial goal of my PR was to convert values passed to an interface of CSSStyleDeclaration...
From what I understand, a value is converted to a `DOMString` when passing from JavaScript to a DOM element `style` interface. > Interface CSSStyleDeclaration > > void setProperty(in DOMString propertyName,...
The `typedef DOMString CSSOMString;` was missing in my IDL file, sorry about that. I added it (before the `MediaList` interface, of course) but the same error is produced, sadly, yes....
This is the description used in the Web IDL specification. I naively expected that an instance of a class defined with IDL and wrapped in a promise, as a return...