mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27e7412d40
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>
|