Šime Vidas

Results 57 comments of Šime Vidas

I can confirm. The same happens when hovering the ”tab stop” inputs. This could be another Chromium bug. I updated the test page from `` to `` to make it...

I’m linking the Chromium bug re `overscroll-behavior: contain` not working for dialogs without overflow: https://bugs.chromium.org/p/chromium/issues/detail?id=813094

The WebKit bug has been fixed in Safari 15.4 a few months ago: https://bugs.webkit.org/show_bug.cgi?id=178261

Would it be possible if the new version used inverted media queries to produce accurate conversions. Input: ```css @media (width < 100px) ``` postcss-preset-env output: ```css @media (max-width: 99px) ```...

For what it’s worth, the decorators proposal is at Stage 2, so once Babel’s transform is updated, it should be possible to use [core-decorators.js](https://github.com/jayphelps/core-decorators.js) to write `@autobind class Point {`…...

@bathos This seems fine to me (it’s not obfuscated): ```js class Foo extends Component { constructor() {} @autobind bar() {} } ``` The ~~array~~ arrow function in constructor pattern is...

Is it safe to assume that the aspect ratio computed from the image’s `width` and `height` attributes will always be the same as the aspect ratio of the rendered image...