mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-14 00:08:51 +00:00
18 lines
308 B
HTML
18 lines
308 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>scripttest-fail</title>
|
||
|
<script type="text/javascript">
|
||
|
function getTestCases()
|
||
|
{
|
||
|
return [
|
||
|
{ testPassed: (function () { return false; }), testDescription: (function () { return "failed"; }) }
|
||
|
];
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>scripttest-fail</h1>
|
||
|
</body>
|
||
|
</html>
|