summaryrefslogtreecommitdiffstats
path: root/dom/imptests/webapps/WebStorage/tests/submissions/Infraware/test_event_local_oldvalue.html
blob: faf434001f94a681df2c54f4b80c73ba2591b0e6 (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_local_oldValue</h1>
    <div id="log"></div>
    <script>
        test(function() {
            localStorage.clear();
            var t = async_test("oldValue property test of local event");
            var expected = [null, 'user1', null]
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.oldValue, 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/local_change_item_iframe.html');
            document.body.appendChild(el);
        });
    </script>
 </body>
</html>