https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 216c102d7d1ab1042057e2a304a7aefaaa417d5a authored by Robin Berjon on 09 April 2014, 18:20:13 UTC
duplicate entry for button
Tip revision: 216c102
event_session_url.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_url</h1>
    <div id="log"></div>
    <script>
        test(function() {
            sessionStorage.clear();
            var t = async_test("url property test of session event");
            function onStorageEvent(event) {
                t.step(function() {
                    var url = window.location.href;

                    var pos = url.lastIndexOf("/");
                    if (pos != -1) {
                        url = url.substr(0, pos + 1);
                        url = url + "iframe/session_set_item_iframe.html";
                    }

                   assert_equals(event.url, url);
                });
                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