Last active
June 23, 2021 18:13
-
-
Save subzey/00ee983c505f413f279c66c08ffd2246 to your computer and use it in GitHub Desktop.
Chrome 91 SVG favicon test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Favicon test</title> | |
<link rel="icon" href="favicon.svg" type="image/svg+xml"> | |
</head> | |
<body> | |
<img src="favicon.svg" width="16" height="16"> | |
<p>↑ The same SVG image is used both as a favicon and a regular page image.</p> | |
<p>Expected: The favicon and the image should look the same.</p> | |
<p>Actually: They are rendered differently.</p> | |
<p>Reproduced on:</p> | |
<ul> | |
<li>Chrome 91.0.4472.114, Device Pixel Ratio 1.0</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment