rsify
rsify
Input: ``` Promise.resolve(5) ``` Output: ``` 5 ``` Expected: ``` Promise { 5 } ```
Many foreign origin CDN's don't set CORS headers when serving their assets (images, style sheets, fonts) which leads to our program not being able to read the asset's contents. For...
Some apps with micro frontends utilize tons of `` elements to render out their UI. This is yet to be tested, but as far as I know trying to embed...
Taking a screenshot on [usegripeless.com](https://usegripeless.com) needs around 7MB of resources to be downloaded on the first run (latter runs use browser cache) - most of which being imported fonts which...
Failing case: ```pug body(style="background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Stray_kitten_Rambo002.jpg/1200px-Stray_kitten_Rambo002.jpg)") ``` I imagine not many sites use the `url()`'s like this, hence this issue is marked as low priority.
Some cutting edge animation libraries (like [elm-animator](https://package.elm-lang.org/packages/mdgriffith/elm-animator/latest/)) render the animated UI using generated CSS keyframes, instead of setting properties manually on every frame with `requestAnimationFrame`. Currently all animations render out...
Due to browser restrictions, we'll never be able to render foreign `` and [tainted ``](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image#Security_and_tainted_canvases) elements. Because of that we could show a placeholder image in those places instead, e.g....