JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
rename to Peach HTML5 Editor
[peach-html5-editor.git] / editor_tests.html
diff --git a/editor_tests.html b/editor_tests.html
new file mode 100644 (file)
index 0000000..1a04544
--- /dev/null
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+       <meta charset="UTF-8">
+       <link rel="icon" href="data:;base64,iVBORw0KGgo=">
+       <title>html editor tester</title>
+       <style>
+               textarea {
+                       box-sizing: border-box;
+                       width: 100%;
+               }
+       </style>
+</head>
+<body>
+       <h1>Peach HTML5 Editor test page (partially compiled version)</h1>
+       <p>This version of the editor test page requires that you've compiled parser.js (to speed up page load) but it does compile editor.coffee and editor_tests.coffee in the browser so you don't have to rebuild them every time you make a change.</p>
+       <form action="#" method="get">
+       <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>
+       <p><input id="button" type="submit" value="loading..." disabled></p>
+       </form>
+       <script src="parser.js"></script>
+       <script src="editor.coffee" type="text/coffeescript"></script>
+       <script src="editor_tests.coffee" type="text/coffeescript"></script>
+       <script src="coffee-script.js"></script>
+</body>
+</html>