summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/browser_storage_sessionstorage_edit.js
blob: 51e96575853f4dbb68275e1cd203455206e8b1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// Basic test to check the editing of localStorage.

"use strict";

add_task(async function () {
  await openTabAndSetupStorage(
    MAIN_DOMAIN_SECURED + "storage-sessionstorage.html"
  );

  await selectTreeItem(["sessionStorage", "https://test1.example.org"]);

  await editCell("TestSS1", "name", "newTestSS1");
  await editCell("newTestSS1", "value", "newValueSS1");

  await editCell("TestSS3", "name", "newTestSS3");
  await editCell("newTestSS3", "value", "newValueSS3");

  await editCell("TestSS5", "name", "newTestSS5");
  await editCell("newTestSS5", "value", "newValueSS5");
});