gecko/dom/indexedDB/test/test_webapp_clearBrowserData_inproc_inproc.html
Justin Lebar 114ec5cd8d Bug 806168 - Test for bugs 802366 and 806127. r=bent
These new tests are disabled on Android because the test they're replacing, test_webapp_clearBrowserData.html, was also disabled on Android, and the new tests fail in the same way as the original test.

--HG--
rename : dom/indexedDB/test/test_webapp_clearBrowserData.html => dom/indexedDB/test/webapp_clearBrowserData.js
2012-11-10 10:32:38 -08:00

34 lines
1.3 KiB
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!--
We have three similar tests here which each check that indexedDB data for a
browser inside an app is cleared upon request:
1) test_webapp_clearBrowserData_inproc_oop.html,
2) test_webapp_clearBrowserData_oop_inproc.html, and
3) test_webapp_clearBrowserData_inproc_inproc.html.
The only difference between these is that the first constructs an in-process
app frame which contains an out-of-process browser frame, the second
constructs an out-of-process app frame which contains an in-process browser
frame, and the third has both frames in process.
The tests share all their JS code. webapp_clearBrowserData.js determines
which frames are in- and out-of-process by looking at the test's filename.
-->
<html>
<head>
<title>Indexed Database Clear Browser Data Test inproc/inproc</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript;version=1.7" src="webapp_clearBrowserData.js"></script>
<script type="text/javascript;version=1.7" src="helpers.js"></script>
</head>
<body onload="start();">
</body>
</html>