https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2b6fdc652d9eb3aaaf85015cebb76f17f1902b28 authored by Robin Berjon on 28 March 2014, 10:25:45 UTC
remove test that is supported neither by spec nor by implementations
Tip revision: 2b6fdc6
event_session_key.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_key</h1>
    <div id="log"></div>
    <script>
        test(function() {
            sessionStorage.clear();
            var t = async_test("key property test of session event");
            var expected = ['name', null]
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.key, 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_set_item_clear_iframe.html');
            document.body.appendChild(el);
        });
    </script>
 </body>
</html>
back to top