зеркало из https://github.com/mozilla/gecko-dev.git
43 строки
1.2 KiB
HTML
43 строки
1.2 KiB
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_newValue</h1>
|
|
<div id="log"></div>
|
|
<script>
|
|
test(function() {
|
|
sessionStorage.clear();
|
|
var t = async_test("newvalue property test of session event");
|
|
var expected = ['user1', 'user2', null]
|
|
function onStorageEvent(event) {
|
|
t.step(function() {
|
|
assert_equals(event.newValue, 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_change_item_iframe.html');
|
|
document.body.appendChild(el);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|