Hey @drott in your article about removing #xslt from Chrome (https://developer.chrome.com/docs/web-platform/deprecating-xslt). Just wondering why you didn't take the same approach to XSLT that you did for #XML and libxml, e.g. replace libxslt with something more modern (e.g. Saxon-C)?
@adamretter Our focus is improving security. Saxon/C, which AFAIU is produced by transpiling Java to native using GraalVM, would give us native code but lacks the security guarantees of a memory safe language. Also, we are not able to include the complexity of a subset of a native-compiled Java VM into Chromium.
We found existing Rust alternatives to to not be a straightforward replacement. And, as in the post, we do want to focus on securing and improving the features that power the web.

