[Webkit-unassigned] [Bug 226547] indexedDB.open() sometimes hangs forever in pending state on first page load in iOS 14.6

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 14 15:28:18 PDT 2021


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

John Hiesey <jhiesey at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jhiesey at gmail.com

--- Comment #18 from John Hiesey <jhiesey at gmail.com> ---
I can also reproduce this on Safari 14.1.1 on macOS 11.4

Here's a minimal reproduction html file:

<!doctype html>
<html>
<head>
        <title>indexedDB fails to open</title>
</head>
<body>
        <script>
                const request = indexedDB.open('testdb', 1)
                request.addEventListener('success', () => {
                        alert('success')
                })
                request.addEventListener('error', () => {
                        alert('error')
                })
        </script>
</body>
</html>

Expected behavior: A "success" alert appears
Actual behavior: Nothing happens

This definitely should work! I confirmed that it works in current versions of Chrome and Firefox.

-- 
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/20210614/755ab5e3/attachment.htm>


More information about the webkit-unassigned mailing list