[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core(scoring): update CLS score curve - 0.25 is now failing #10495

Merged
merged 5 commits into from
Apr 28, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
core(scoring): update CLS scorecuve - 0.25 is now failing
  • Loading branch information
paulirish committed Mar 23, 2020
commit 99a37a2046377897d0dd4ce0ec231b4ead70d172
6 changes: 3 additions & 3 deletions lighthouse-core/audits/metrics/cumulative-layout-shift.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ class CumulativeLayoutShift extends Audit {
return {
// Calibrated to assure 0.1 gets a score of 0.9. https://web.dev/cls/#what-is-a-good-cls-score
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should really consider reworking our math so we can define in terms of the 90 cutoff :) haha

// This 0.1 target score was determined through both manual evaluation and large-scale analysis.
// see https://www.desmos.com/calculator/wmcxn7zfhc
scorePODR: 0.02,
scoreMedian: 0.2,
// see https://www.desmos.com/calculator/vjb652sqeh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems like it didn't save with the new values, maybe just forgot to press save?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

true. just updated with the newer shiny one.

scorePODR: 0.054,
scoreMedian: 0.25,
};
}

Expand Down