https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3b72a94d8d9b7297903242591e813384c9b57d8d authored by Robin Berjon on 28 March 2014, 09:56:40 UTC
don't blow up just because we wanted to remove something that didn't exist
Tip revision: 3b72a94
event_session_storageeventinit.html
<!DOCTYPE HTML>
<html>
 <head>
  <title>Web Storage</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
    <h1>event_session_StorageEventInit</h1>
    <div id="log"></div>
    <script>
        test(function() {
            var t = async_test("storageeventinit test");
            function onStorageEvent(event) {
                t.step(function() {
                    assert_equals(event.key, 'key');
                    assert_equals(event.oldValue, 'oldValue');
                    assert_equals(event.newValue, 'newValue');
                    assert_equals(event.url, window.location.href);
                    assert_equals(event.storageArea, window.sessionStorage);
                });
                t.done();
            }

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

            var event = new StorageEvent('storage', {
                key: 'key',
                oldValue: 'oldValue',
                newValue: 'newValue',
                url: window.location.href,
                storageArea: window.sessionStorage
            });

            window.dispatchEvent(event);
        });
    </script>
 </body>
</html>
back to top