mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
19 lines
435 B
HTML
19 lines
435 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>scripttest-pass-fail</title>
|
|
<script type="text/javascript">
|
|
function getTestCases()
|
|
{
|
|
return [
|
|
{ testPassed: (function () { return false; }), testDescription: (function () { return "fail"; }) },
|
|
{ testPassed: (function () { return true; }), testDescription: (function () { return "expected random pass"; }) }
|
|
];
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>scripttest-pass-fail</h1>
|
|
</body>
|
|
</html>
|