summaryrefslogtreecommitdiffstats
path: root/dom/imptests/webapps/WebStorage/tests/submissions/Ms2ger/test_storage_local_length_js.html
blob: 445db51892ce1fa1cf87efbaf3579fdc83eda86b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
 <head>
  <title>Web Storage</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
    <h1>storage_local_length</h1>
    <div id="log"></div>
    <script>
        test(function() {
            localStorage.clear();
            assert_equals(localStorage.length, 0, "localStorage.length")

            localStorage["name"] = "user1";
            localStorage["age"] = "20";

            assert_equals(localStorage.length, 2, "localStorage.length")
        });
    </script>
 </body>
</html>