summaryrefslogtreecommitdiffstats
path: root/dom/imptests/webapps/WebStorage/tests/submissions/Infraware/test_event_session_storageeventinit.html
blob: a2d2c1a73650d1b6615789d74bfd3f0d0b1e51c6 (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
<!DOCTYPE HTML>
<html>
 <head>
  <title>Web Storage</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
    <h1>event_session_StorageEventInit</h1>
    <div id="log"></div>
    <script>
        test(function() {
            var t = async_test("storageeventinit test");
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.key, 'key');
                    assert_equals(event.oldValue, 'oldValue');
                    assert_equals(event.newValue, 'newValue');
                    assert_equals(event.url, window.location.href);
                    assert_equals(event.storageArea, window.sessionStorage);
                });
                t.done();
            }

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

            var event = new StorageEvent('storage', {
                key: 'key',
                oldValue: 'oldValue',
                newValue: 'newValue',
                url: window.location.href,
                storageArea: window.sessionStorage
            });

            window.dispatchEvent(event);
        });
    </script>
 </body>
</html>