Class procedure TLocalStorage.Clear is implemented incorrectly

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.