Philip Jägenstedt

Results 1054 comments of Philip Jägenstedt

I've sent https://github.com/whatwg/dom/pull/972 to define just the `XSLTProcessor` interface, pointing back to this issue. I went ahead and queried HTTP Archive for "new XSLTProcessor" to see what current usage looks...

I also looked up [sites that trigger Chrome's use counter](https://gist.github.com/foolip/617b49d9f53a20c15fe1d75141bf679d), at looked at https://www.athome.co.jp/ as a sample. I did `delete window.XSLTProcessor` and the result at the bottom of the page...

Since I formatted it nicely in https://github.com/web-platform-tests/wpt/pull/28639, I'll repeat it here. Additional details on XSLT in HTML: - [Interactions with XPath and XSLT](https://html.spec.whatwg.org/multipage/infrastructure.html#interactions-with-xpath-and-xslt) - [Interaction of `script` elements and XSLT](https://html.spec.whatwg.org/multipage/scripting.html#scriptTagXSLT)...

There's definitely some similarity here with https://github.com/whatwg/mediasession/pull/129 Feedback on that PR appreciated, and is there a good place to put the common bits? Looks to me at first glace like...

Very interesting. Media Session will indeed need this, because you'll want to change the icon of the media playback notification. However, we also want to change the lockscreen background. Both...

Some discussion (by me) at https://code.google.com/p/chromium/issues/detail?id=392311#c17

At this level of usage, it doesn't seem likely that console warning will be able to drive down usage enough so that sync XHR can be removed. If console warnings...

@annevk this is the console warning in Blink with by far the highest usage, around 2%: https://www.chromestatus.com/metrics/feature/timeline/popularity/581 There's trade-off here, between training web developers to ignore console warnings because they...

That's a connection I was not aware of, which uses of sync XHR can be replaced by FormData in Web Workers?

I'm not sure I understand, does the server timeout not result in an error event in the async case like it should? Is this to work around an implementation bug,...