Philip Jägenstedt
Philip Jägenstedt
I haven't reviewed the change, leaving that to @tabatkins, but I like the approach, thanks @sideshowbarker!
I didn't know in what the hackiness consists, so I thought "ideally being able to print a line number in more cases" would cover it. Sounds like it can also...
If we have this, we should then file an issue on https://github.com/w3c/webref to extract the CDDL and perhaps publish a `@webref/cddl` package to NPM.
It looks like there's already some support: https://pygments.org/languages/
Indeed, an index is what we're hoping for. And maybe splitting that by "local" and "remote" definitions. cc @christian-bromann who has worked a bit on this in the WebDriver BiDi...
I'm seeing a similar problem with the number of lines being affected by the combination of babel-loader and istanbul-instrumenter-loader. https://github.com/webpack-contrib/istanbul-instrumenter-loader#with-babel suggests `enforce: 'post'` which is surprising. I'll try both that...
I've tried both post and pre now: https://github.com/GoogleChromeLabs/confluence/pull/403 https://github.com/GoogleChromeLabs/confluence/pull/404 As expected, `enforce: 'pre'` is what fixes the line numbering, since the instrumentation is otherwise done on the babel output. I've...
A few other CI systems possibly worth detecting: - [Azure Pipelines](https://azure.microsoft.com/en-us/services/devops/pipelines/) - [CircleCI](https://circleci.com/) - [Cirrus CI](https://cirrus-ci.org/) - [Travis CI](https://travis-ci.com/) I expect Travis CI in particular is pretty commonly used.
These are the surface-level differences between Gecko and Blink that I added as TODOs in our [IDL file](https://chromium.googlesource.com/chromium/src/+/0443b48253b56ed9bbd6597cbbad8f568c053c38/third_party/WebKit/Source/core/xml/XSLTProcessor.idl): - In Gecko, the transformTo*() methods throw an exception in case of...
This is the use counter data for Chrome: - [`` in markup causing the document to be transformed using XSLT](https://www.chromestatus.com/metrics/feature/timeline/popularity/78) - [`new XSLTProcessor` in script](https://www.chromestatus.com/metrics/feature/timeline/popularity/79) Both are so low that...