blob: 6eb46f50ecc936c095f5eb0085bb1ee78530dd68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>Indexed Database Leaving Page Test</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onload="runTest();">
<iframe id="inner"></iframe>
<a id="a" href="leaving_page_iframe.html"></a>
<script type="text/javascript;version=1.7">
onmessage = function(e) {
ok(false, "gotmessage: " + e.data);
}
function testSteps()
{
var iframe = $("inner");
iframe.src = "leaving_page_iframe.html";
iframe.onload = continueToNextStep;
yield undefined;
is(iframe.contentWindow.location.href, $("a").href,
"should navigate to iframe page");
yield undefined;
is(iframe.contentWindow.location.href, "about:blank",
"should nagivate to about:blank");
let request = indexedDB.open(location, 1);
request.onsuccess = grabEventAndContinueHandler;
let event = yield undefined;
let db = event.target.result;
db.transaction(["mystore"]).objectStore("mystore").get(42).onsuccess =
grabEventAndContinueHandler;
event = yield undefined;
is(event.target.result.hello, "world", "second modification rolled back");
finishTest();
yield undefined;
}
</script>
<script type="text/javascript;version=1.7" src="helpers.js"></script>
</html>
|