summaryrefslogtreecommitdiffstats
path: root/dom/imptests/webapps/WebStorage/tests/submissions/Infraware/test_event_session_key.html
blob: f976a67325bd1b7fdc3e3395d9400abfe7271d5c (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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE HTML>
<html>
 <head>
  <title>Web Storage</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>
      function fail(msg) {
          t.step(function() {
              assert_notreached(msg);
          });
          t.done();
      }
  </script>
 </head>
 <body>
    <h1>event_session_key</h1>
    <div id="log"></div>
    <script>
        test(function() {
            sessionStorage.clear();
            var t = async_test("key property test of session event");
            var expected = ['name', null]
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.key, expected.shift());
                });
                if (!expected.length) {
                    t.done();
                }
            }

            window.addEventListener('storage', onStorageEvent, false);

            var el = document.createElement("iframe");
            el.setAttribute('id', 'ifrm');
            el.setAttribute('src', 'iframe/session_set_item_clear_iframe.html');
            document.body.appendChild(el);
        });
    </script>
 </body>
</html>