Bug 1146194: Multiple cookies with the same name not shown

Issue #31
This commit is contained in:
janekptacijarabaci 2018-03-02 13:36:16 +01:00 committed by Roy Tam
commit a5b4f6e003
27 changed files with 829 additions and 169 deletions

View file

@ -38,8 +38,10 @@ window.removeCookie = function(name, path) {
* can be tested.
*/
window.clear = function*() {
sessionStorage.clear();
localStorage.clear();
dump("removed localStorage from " + document.location + "\n");
sessionStorage.clear();
dump("removed sessionStorage from " + document.location + "\n");
};