mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
114ec5cd8d
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
34 lines
1.3 KiB
HTML
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>
|