Emilio Cobos Álvarez
Emilio Cobos Álvarez
Consider this test-case: ```html for (let img of document.querySelectorAll("img")) { img.src = "data:image/svg+xml;base64," + btoa(` :root { color: blue } @media (prefers-color-scheme: dark) { :root { color: purple } }...
In https://github.com/w3c/csswg-drafts/issues/4766#issuecomment-585314599, we resolved to create a new CSS Viewport spec, to host the meta viewport stuff at least, but it doesn't seem to have happened yet. Given there's ongoing...
`@page` potentially supports a variety of CSS properties, and some descriptors like `size`, `page-orientation`, etc. It however seems to use the term 'property' for descriptors in arbitrary places... Should probably...
Right now we only have a single interface that exposes the CSS property names as attributes ([`CSSStyleDeclaration`](https://drafts.csswg.org/cssom/#the-cssstyledeclaration-interface)), but no browser does it right, and the spec behavior is also not...
This seems to be needed for compat, see https://bugzilla.mozilla.org/show_bug.cgi?id=1696717.
in #444 I pretty much wrapped everything in an `if` block, but @fitzgen suggested it may be a better idea to get the potential comment holders the context so they...
This is a list of things we can't handle correctly in bindgen, and we're not expected to be able to in a while. ### Partial template specialization We can't get...
In rust you can't define variadic methods, at least as of right now. If that changes, we would be able to generate the convenience methods we use for the rest...
https://html.spec.whatwg.org/#update-the-rendering says that step 14 is: > For each [fully active](https://html.spec.whatwg.org/#fully-active) [Document](https://html.spec.whatwg.org/#document) in docs, [run the update intersection observations steps](https://w3c.github.io/IntersectionObserver/#run-the-update-intersection-observations-steps) for that [Document](https://html.spec.whatwg.org/#document), passing in now as the timestamp Same...
I was looking into implementing the focus fixup rule in Gecko, and per spec it's not clear when it should happen when it happens as a response to style changes....