[Webkit-unassigned] [Bug 228909] document.fonts.ready stays unresolved

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Sep 10 16:48:53 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=228909

--- Comment #4 from Myles C. Maxfield <mmaxfield at apple.com> ---
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.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210910/caf89469/attachment.htm>


More information about the webkit-unassigned mailing list