Jannis Weis

Results 269 comments of Jannis Weis

This is a reasonable suggestion 👍🏼

I don't intend to actually follow the spotlight position. Currently depending on the number of history items the menu is larger or taller. Because the entering modes center the whole...

I have some WIP branch locally. Unfortunately I haven't gotten around to finish it yet. Definitely will submit a PR though

Hi, I’m the person who implemented the partial mask support for svgSalamander. I have since moved my efforts to developing my own svg rendering library: https://github.com/weisJ/jsvg Masks and clips are...

I noticed this too. Background images are broken in Firefox (Linux only).

This is due to the polyfill for non-inline styles putting the changed stylesheet into blob storage, which seems to have issues in firefox with relative urls. Seems like a non-css...

There really is no easy fix for the first case as it is very difficult to track which parts of an element are actually obstructed by another. I have pushed...

Currently masks are implemented in a way that avoids an additional offscreen image, which I want to keep for the cases where the "isolation" isn't necessary (offscreen images are the...

I have noticed this as well. It at least indicates that most SVGs in the wild don’t make use of this feature. I think for a first solution I will...

Finally got around to fixing this "properly". You can set `SVGRenderingHints.KEY_MASK_CLIP_RENDERING` to `SVGRenderingHints.VALUE_MASK_CLIP_RENDERING_ACCURACY` to enforce the proper isolated behaviour. It is available in the latest snapshot.