mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0d874b65fa
--HG-- rename : dom/indexedDB/nsIIDBVersionChangeRequest.idl => dom/indexedDB/nsIIDBOpenDBRequest.idl
49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<!--
|
|
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;
|
|
is(iframe.contentWindow.location.href, $("a").href,
|
|
"should navigate to iframe page");
|
|
yield;
|
|
is(iframe.contentWindow.location.href, "about:blank",
|
|
"should nagivate to about:blank");
|
|
|
|
let request = mozIndexedDB.open(location, 1);
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
let event = yield;
|
|
|
|
let db = event.target.result;
|
|
db.transaction(["mystore"]).objectStore("mystore").get(42).onsuccess =
|
|
grabEventAndContinueHandler;
|
|
event = yield;
|
|
is(event.target.result.hello, "world", "second modification rolled back");
|
|
|
|
finishTest();
|
|
yield;
|
|
}
|
|
</script>
|
|
<script type="text/javascript;version=1.7" src="helpers.js"></script>
|
|
</html>
|