Created
June 8, 2019 22:57
-
-
Save RatoX/1444880ffb9b8aa4275eeb824746b124 to your computer and use it in GitHub Desktop.
Google Chrome CSS memory leak
This file contains 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
<html> | |
<head> | |
<style> | |
@keyframes wave { | |
0% { | |
font-variation-settings: 'wght' 100; | |
} | |
100% { | |
font-variation-settings: 'wght' 1000; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div style="animation: wave 3s infinite;">words</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment