https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a252283eadb54c31cb419e3f0618b2f0fd0dfb4b authored by James Graham on 07 April 2014, 16:19:14 UTC
Give XHR test some titles.
Tip revision: a252283
event_session_storagearea.html
<!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_unreached(msg);
          });
          t.done();
      }
  </script>
 </head>
 <body>
    <h1>event_session_storageArea</h1>
    <div id="log"></div>
    <script>
        test(function() {
            var t = async_test("storageArea property test of session event");
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.storageArea.length, 1);
                    var key = event.storageArea.key(0);
                    var value = event.storageArea.getItem(key);
                    assert_equals(key, "name");
                    assert_equals(value, "user1");
                });
                t.done();
            }

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

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

 </body>
</html>
back to top