summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webstorage/storage_key_empty_string.window.js
blob: c3d59c42b8011c13fb0cecd60fe179a886eb62dd (plain)
1
2
3
4
5
6
7
8
9
10
["localStorage", "sessionStorage"].forEach(function(name) {
    test(function () {
      var storage = window[name];
      storage.clear();

      storage.setItem("", "empty string");
      assert_equals(storage.getItem(""), "empty string");

  }, name + ".key with empty string");
});