31 lines
860 B
HTML
31 lines
860 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>CodeMirror 2: Test Suite</title>
|
|
<link rel="stylesheet" href="../lib/codemirror.css">
|
|
<script src="../lib/codemirror.js"></script>
|
|
<link rel="stylesheet" href="../mode/javascript/javascript.css">
|
|
<script src="../mode/javascript/javascript.js"></script>
|
|
|
|
<link rel="stylesheet" href="../docs.css">
|
|
<style type="text/css">
|
|
.ok {color: #0e0;}
|
|
.failure {color: #e00;}
|
|
.error {color: #c90;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>CodeMirror 2: Test Suite</h1>
|
|
|
|
<p>A limited set of programmatic sanity tests for CodeMirror.</p>
|
|
|
|
<pre id=output></pre>
|
|
|
|
<div style="visibility: hidden" id=testground>
|
|
<form><textarea id="code" name="code"></textarea><input type=submit value=ok name=submit></form>
|
|
</div>
|
|
|
|
<script src="test.js"></script>
|
|
</body>
|
|
</html>
|