- From: satoshi2018 <notifications@github.com>
- Date: Mon, 26 Jun 2023 20:39:47 -0700
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 27 June 2023 03:39:53 UTC
``Product/Service Name, Version, Edition: Windows 11 Version 22H2 (OS Build 22621.382) Microsoft Edge Version 101.0.1210.53 (Official build) (64-bit) Product/Service Feature/Category/Keywords: Edge's IE mode, indexed DB, localforage The JavaScript code that utilizes the indexedDB API and the indexedDB wrapper library, localforage, which was working in Edge's IE mode in Windows 10, no longer functions in Windows 11's Edge IE mode. I have attached a sample program for reference. Could you please investigate the cause of this issue? ``` var request = indexedDB.open('myDatabase', 1); request.onupgradeneeded = function(event) { var db = event.target.result; }; request.onsuccess = function(event) { var db = event.target.result; }; request.onerror = function(event) { console.log('db open error:', event.target.error); }; ``` When executing the sample code, the following error occurs. `db open error: UnknownError` -- Reply to this email directly or view it on GitHub: https://github.com/w3c/IndexedDB/issues/405 You are receiving this because you are subscribed to this thread. Message ID: <w3c/IndexedDB/issues/405@github.com>
Received on Tuesday, 27 June 2023 03:39:53 UTC