summaryrefslogtreecommitdiffstats
path: root/dom/imptests/webapps/WebStorage/tests/submissions/Ms2ger/test_missing_arguments.html
blob: 984c60a1223021a3fe645f40077206001762e33d (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
25
26
27
28
29
30
31
32
<!DOCTYPE HTML>
<html>
 <head>
  <title>Web Storage</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
    <h1>missing_arguments</h1>
    <div id="log"></div>
    <script>
        var tests = [
            function() { localStorage.key(); },
            function() { localStorage.getItem(); },
            function() { localStorage.setItem(); },
            function() { localStorage.setItem("a"); },
            function() { localStorage.removeItem(); },
            function() { sessionStorage.key(); },
            function() { sessionStorage.getItem(); },
            function() { sessionStorage.setItem(); },
            function() { sessionStorage.setItem("a"); },
            function() { sessionStorage.removeItem(); },
            function() { new StorageEvent(); }
        ];
        tests.forEach(function(fun) {
            test(function() {
                assert_throws(new TypeError(), fun);
            }, "Should throw TypeError for " + format_value(fun) + ".");
        });
    </script>
 </body>
</html>