https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e58b9b6c5ed4a0846aea6de7366a492d627f0c12 authored by Robin Berjon on 10 April 2014, 17:37:03 UTC
the HTTP interface expects a date, not a string containing a date
Tip revision: e58b9b6
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