Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!--
Any copyright is dedicated to the Public Domain.
-->
<html>
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript">
function startTesting() {
SimpleTest.waitForExplicitFinish();
const checkTestResult = ev => {
is(ev.data, "ok", "Is BucketFS available?");
SimpleTest.finish();
};
window.addEventListener("message", checkTestResult);
const testUrl =
document.getElementById("getMe").src = testUrl;
}
</script>
</head>
<body onload="startTesting();">
<iframe id="getMe"></iframe>
</body>
</html>