-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Hi,
I've been trying to understand why https://wpt.fyi/results/largest-contentful-paint/web-font-styled-text-resize-swap-after-interaction.html indicates a failure for Chrome. The indication there (looking at the detail of the test failure) is that there are two performance entries for the URL of the font, when we expect just one, as asserted by line 71 in the test file:
assert_equals(performance.getEntriesByName(absoluteURL).length, 1, 'Web font should be downloaded.');
I've not been able to reproduce this failure.
I've verified the following thus far:
- Test passes in the Chromium repository (it's not flaky in our dashboard, for any platform)
- Test passes live here, when typing 'k' into the text field (I'm running a recent Chrome on Ubuntu).
- With a simple pending PR against the test in this Github repository, the bots appear to pass the test. See https://github.com/web-platform-tests/wpt/pull/56113/files and https://wpt.fyi/results/largest-contentful-paint?label=pr_head&max-count=1&pr=56113
What I've also tried is to make a simple clarifying change against the test in the Chromium repo, to see if I could tickle the dashboard to update. That PR is still pending review for Github due to this test being an interop test, but even once accepted the outcome is uncertain.
I think at this point it's possible that the dashboard is displaying an incorrect result for Chrome, or there is a subtle difference in how the test runs when producing that result. Either way, I'd be grateful for some help debugging this issue. Thanks!