Jed Schmidt

Results 25 issues of Jed Schmidt

### What type of issue is this? Browser bug (a bug with a feature that may impact site compatibility) ### What information was incorrect, unhelpful, or incomplete? The Browser Compatibility...

data:api :rabbit2:

### What type of issue is this? Browser bug (a bug with a feature that may impact site compatibility) ### What information was incorrect, unhelpful, or incomplete? The Browser Compatibility...

data:api :rabbit2:

This PR adds support for the `:read-only` and `:read-write` pseudo-selectors, as described [here](https://developer.mozilla.org/en-US/docs/Web/CSS/:read-write).

Running this code: ```js import { parseHTML } from "linkedom"; const { document, MutationObserver } = parseHTML( "", ); let mo = new MutationObserver((records) => { let { nodeName }...

Running this (in nodejs v20.18.1): ```js import { parseHTML } from "linkedom"; const { document, window } = parseHTML(); for (let name of ["document", "window"]) { window[name].addEventListener("test", (e) => console.assert(e.target...