| Summary: | document.fonts.ready stays unresolved | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Roland Soos <roland> |
| Component: | Page Loading | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED CONFIGURATION CHANGED | ||
| Severity: | Normal | CC: | achristensen, beidson, cdumez, mmaxfield, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | Safari 14 | ||
| Hardware: | All | ||
| OS: | All | ||
|
Description
Roland Soos
2021-08-09 00:33:41 PDT
It might be related to the fact that window's load event is not happening. `document.readyState` is "complete", but `window.performance.timing.loadEventStart` and `window.performance.timing.loadEventEnd` is 0 rdar://82962890 is stopping me from investigating this. Hopefully that bug can be fixed soon so I can investigate this document.fonts bug. I modified this bit of code in n2.min.js
fonts: new Promise((function(t) {
"fonts" in s ? (s.fonts.ready.then(t), h.r("windowLoad", t)) : h.r("windowLoad", t)
}))
to be this:
fonts: new Promise((function(t) {
s.fonts.ready.then(function() {debugger;});
"fonts" in s ? (s.fonts.ready.then(t), h.r("windowLoad", t)) : h.r("windowLoad", t)
}))
and the "debugger" line did get hit in macOS Monterey.
And, above, when the `debugger;` line gets hit, > document.readyState < "complete" > window.performance.timing.loadEventStart < 1631318004941 > window.performance.timing.loadEventEnd < 1631318004941 I'm not able to reproduce this, given the above analysis, so I'm going to mark this as "configuration changed." If this is still happening, please re-open the bug. |