aboutsummaryrefslogtreecommitdiffstats
path: root/test_harnesses/automated/automated.html
diff options
context:
space:
mode:
authorJez Ng2012-09-03 19:24:47 -0400
committerJez Ng2012-09-03 21:17:46 -0400
commit5a42c4909ac990d87399c939903aebc4d8b26309 (patch)
tree5385dcb139bd1c0583b4d1876323f69a7e8ea1ab /test_harnesses/automated/automated.html
parent90dfd91ffdaec6539950b2f9229cfabfd186bb1e (diff)
downloadvimium-5a42c4909ac990d87399c939903aebc4d8b26309.tar.bz2
Make hints tests pass again.
Convert them to Coffeescript at the same time. We really need to set up some automated way of running these tests, to ensure they don't keep breaking.
Diffstat (limited to 'test_harnesses/automated/automated.html')
-rw-r--r--test_harnesses/automated/automated.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/test_harnesses/automated/automated.html b/test_harnesses/automated/automated.html
new file mode 100644
index 00000000..a0c8c7de
--- /dev/null
+++ b/test_harnesses/automated/automated.html
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+ "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+ <head>
+ <style type="text/css">
+ body {
+ font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
+ width: 800px;
+ margin: 0px auto;
+ }
+ #output-div {
+ white-space: pre-wrap;
+ background-color: #eee;
+ font-family: monospace;
+ margin: 0 0 50px 0;
+ border-style: dashed;
+ border-width: 1px 1px 0 1px;
+ border-color: #999;
+ }
+ .errorPosition {
+ color: #f33;
+ font-weight: bold;
+ }
+ .output-section {
+ padding: 10px 15px 10px 15px;
+ border-bottom: dashed 1px #999;
+ }
+ </style>
+ <link rel="stylesheet" type="text/css" href="../../vimium.css" />
+ <script type="text/javascript" src="../../lib/utils.js"></script>
+ <script type="text/javascript" src="../../lib/keyboard_utils.js"></script>
+ <script type="text/javascript" src="../../lib/dom_utils.js"></script>
+ <script type="text/javascript" src="../../lib/clipboard.js"></script>
+ <script type="text/javascript" src="../../content_scripts/link_hints.js"></script>
+ <script type="text/javascript" src="../../content_scripts/vomnibar.js"></script>
+ <script type="text/javascript" src="../../content_scripts/vimium_frontend.js"></script>
+ <script type="text/javascript" src="../../tests/shoulda.js/shoulda.js"></script>
+ <script type="text/javascript" src="automated.js"></script>
+ </head>
+ <body>
+ <!-- should always be the first element on the page -->
+ <div id="test-div"></div>
+
+ <h1>Vimium Tests</h1>
+
+ <div id="output-div"></div>
+
+ </body>
+</html>