JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
start on cursor and typing
[peach-html5-editor.git] / editor_tests_coffee.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4         <meta charset="UTF-8">
5         <link rel="icon" href="data:;base64,iVBORw0KGgo=">
6         <title>html editor tester</title>
7         <style>
8                 textarea {
9                         box-sizing: border-box;
10                         width: 100%;
11                 }
12         </style>
13 </head>
14 <body>
15         <h1>WHEIC editor test page (CoffeeScript version)</h1>
16         <p>This version of the test page compiles the CoffeeScript files in the browser. This is slower to load, but saves you having to rebuild as you work (or even install CoffeeScript).</p>
17         <form action="#" method="get">
18         <p>In:<br><textarea rows="9" cols="22" name="in" id="in">&lt;p&gt;Normal &lt;strong&gt;Bold &lt;em&gt; Italic+Bold&lt;/strong&gt; Italic&lt;/em&gt; Normal&lt;/p&gt;</textarea></p>
19         <p><input id="button" type="submit" value="loading..." disabled></p>
20         </form>
21         <script src="parser.coffee" type="text/coffeescript"></script>
22         <script src="editor.coffee" type="text/coffeescript"></script>
23         <script src="editor_tests.coffee" type="text/coffeescript"></script>
24         <script src="coffee-script.js"></script>
25 </body>
26 </html>