~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to test/index.html

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
  <head>
 
4
    <title>CodeMirror: Test Suite</title>
 
5
    <link rel="stylesheet" href="../lib/codemirror.css">
 
6
    <script src="../lib/codemirror.js"></script>
 
7
    <script src="../mode/javascript/javascript.js"></script>
 
8
 
 
9
    <style type="text/css">
 
10
      .ok {color: #0e0;}
 
11
      .failure {color: #e00;}
 
12
      .error {color: #c90;}
 
13
    </style>
 
14
  </head>
 
15
  <body>
 
16
    <h1>CodeMirror: Test Suite</h1>
 
17
 
 
18
    <p>A limited set of programmatic sanity tests for CodeMirror.</p>
 
19
 
 
20
    <pre id=output></pre>
 
21
 
 
22
    <div style="visibility: hidden" id=testground>
 
23
      <form><textarea id="code" name="code"></textarea><input type=submit value=ok name=submit></form>
 
24
    </div>
 
25
 
 
26
    <script src="test.js"></script>
 
27
  </body>
 
28
</html>