gecko-dev/dom/indexedDB/test/test_leaving_page.html
Andrew McCreight 738b476cb2 Bug 1226311, part 2 - Remove SpecialPowers.isMainProcess usage from various IndexedDB tests. r=janv
isMainProcess() is used in a few places to disable tests when run in a
content process. However, these tests are either never run in e10s or
pass when run with e10s, so remove all of the testing code. Some of
this was to work around issues with test_ipc.html which does not seem
to exist any more.

This patch also removes some code for disabling a test on Windows 2003.
2015-11-25 08:09:32 -08:00

50 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 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>