Using WebCore 2.9.8.0, the class procedure TLocalStorage.Clear() (in Core Source\WEBLib.Storage.pas) doesn’t work correctly, because it is implemented as a call to
window.sessionStorage.clear;
This has to be
window.localStorage.clear;
instead.
Using WebCore 2.9.8.0, the class procedure TLocalStorage.Clear() (in Core Source\WEBLib.Storage.pas) doesn’t work correctly, because it is implemented as a call to
window.sessionStorage.clear;
This has to be
window.localStorage.clear;
instead.
Thanks for pointing out.
We corrected this and the next release will have this correction.