Skip to content

Instantly share code, notes, and snippets.

@RatoX
Created June 8, 2019 22:57
Show Gist options
  • Save RatoX/1444880ffb9b8aa4275eeb824746b124 to your computer and use it in GitHub Desktop.
Save RatoX/1444880ffb9b8aa4275eeb824746b124 to your computer and use it in GitHub Desktop.
Google Chrome CSS memory leak
<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