Samuel Mannehed (ThinLinc team)
Samuel Mannehed (ThinLinc team)
I get the following message for every single line I type in a HTML file when coc-html is installed: ``` [coc.nvim]: UnhandledRejection: TypeError: Cannot destructure property 'start' of 'range' as...
#### Details Instead of trying to guess in the JavaScript what the padding difference is, this PR suggests retrieving it using `getComputedStyle()`. The hard-coded assumption of 4px was wrong. Furthermore,...
**Describe the bug** Two out of 11 test-runs fail on GitHub, as seen on pr #1428: * Test / test (windows-latest, FirefoxHeadless) (pull_request): ``` FAILED TESTS: H.264 Decoder Functional Test...
**Describe the bug** With #1919 support was added for back & forward mouse buttons in noVNC. These do not work in Firefox, the browser consumes the events, causing you to...
Before this commit, we strictly required the user to make a ~50 pixel move in order to get these two gestures. We can get a more precise experience if we...
The following CSS should be valid: ``` #mydiv { scrollbar-gutter: auto; } ``` But the validator says: ``` Error: scrollbar-gutter: Property scrollbar-gutter doesn't exist. [From line 2, column 23; to...
The following correct CSS was taken from MDN:s example: ``` #mydiv { clip-path: path('M 0 200 L 0,75 A 5,5 0,0,1 150,75 L 200 200 z'); } ``` https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path The...
Using the following correct CSS with the selector() function gives an error: ``` @supports selector(:has(a, b)) { #mydiv { color: red; } } ``` The error from the validator is:...