Skip to content

stereobooster/puppeteer-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

puppeteer-example

gets critical css

yarn test
.external {
  color: red;
  font-family: "Roboto", sans-serif;
  animation: swing 1s ease;
  animation-iteration-count: 1;
}

Issues with Chrome CSS coverage

Doesn't show @font-face

should show

@font-face {
  font-family: "Roboto";
  ...
}

because of

.external {
  font-family: "Roboto", sans-serif;
}

Doesn't show @keyframes

should show

@keyframes swing {
  ...
}

because of

.external {
  animation: swing 1s ease;
}

Doesn't show :hover

should show

.external:hover {
  color: green;
}

because of

.external {
  ...
}

Related

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published