Revision 67bcdf47cff6cfac397b63020cf518e9a651fc6a authored by chunywang on 25 May 2015, 05:54:30 UTC, committed by Zhiqiang Zhang on 08 June 2015, 06:22:50 UTC
This resolves #1858.
1 parent 47e6da3
Raw File
event_session_oldvalue.html
<!DOCTYPE HTML>
<html>
 <head>
  <title>WebStorage Test: sessionStorage event - oldValue</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>
      function fail(msg) {
          t.step(function() {
              assert_unreached(msg);
          });
          t.done();
      }
  </script>
 </head>
 <body>
    <h1>event_session_oldValue</h1>
    <div id="log"></div>
    <script>
        var t = async_test("oldvalue property test of session event");

        test(function() {
            sessionStorage.clear();
            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/session_change_item_iframe.html');
            document.body.appendChild(el);
        }, "Session event is fired due to an invocation of the setItem(), clear() methods.");
    </script>
 </body>
</html>
back to top