mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
474 B
HTML
22 lines
474 B
HTML
<!DOCTYPE html>
|
|
<meta charset='utf-8'>
|
|
<html>
|
|
<head>
|
|
<title>Always fail test</title>
|
|
<link rel='stylesheet' href='resources/js-test-style.css'/>
|
|
<script src='resources/js-test-pre.js'></script>
|
|
</head>
|
|
<body>
|
|
<div id='description'></div>
|
|
<div id='console'></div>
|
|
|
|
<script>
|
|
description('Deliberately fail so as to test our harness.');
|
|
|
|
testFailed('The harness should expect and handle this failure.');
|
|
|
|
finishTest();
|
|
</script>
|
|
</body>
|
|
</html>
|