changeset 56:dccd8df9005f

Renamed index.html to tests.html.
author Atul Varma <varmaa@toolness.com>
date Wed, 15 Apr 2009 08:09:33 -0700
parents aa013581aeca
children 147016e199d0
files index.html tests.html
diffstat 2 files changed, 51 insertions(+), 51 deletions(-) [+]
line wrap: on
line diff
--- a/index.html	Wed Apr 15 08:07:42 2009 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,51 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
-  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-  <link rel="stylesheet" type="text/css" media="all"
-        href="css/index.css" />
-  <title>Browser Couch Tests</title>
-</head>
-<body>
-<h1>Browser Couch Tests</h1>
-<div id="status">
-</div>
-</body>
-<script src="js/browser-couch.js"></script>
-<script src="js/tests.js"></script>
-<script>
-var listener = {
-  onReady: function(tests) {
-    var status = document.getElementById("status");
-    for (var i = 0; i < tests.length; i++) {
-      var test = tests[i];
-      var div = document.createElement("div");
-      div.className = "test pending";
-      div.id = "test_" + test.id;
-      div.textContent = test.name + " pending";
-      status.appendChild(div);
-    }
-  },
-  onRun: function(test) {
-    var div = document.getElementById("test_" + test.id);
-    div.textContent = test.name + " running";
-    div.className = "test in-progress";
-  },
-  onSkip: function(test) {
-    var div = document.getElementById("test_" + test.id);
-    div.textContent = test.name + " SKIPPED";
-    div.className = "test skipped";
-  },
-  onFinish: function(test) {
-    var div = document.getElementById("test_" + test.id);
-    div.textContent = test.name + " OK";
-    div.className = "test successful";
-  }
-};
-
-Tests.run(listener);
-</script>
-</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests.html	Wed Apr 15 08:09:33 2009 -0700
@@ -0,0 +1,51 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+  <link rel="stylesheet" type="text/css" media="all"
+        href="css/index.css" />
+  <title>Browser Couch Tests</title>
+</head>
+<body>
+<h1>Browser Couch Tests</h1>
+<div id="status">
+</div>
+</body>
+<script src="js/browser-couch.js"></script>
+<script src="js/tests.js"></script>
+<script>
+var listener = {
+  onReady: function(tests) {
+    var status = document.getElementById("status");
+    for (var i = 0; i < tests.length; i++) {
+      var test = tests[i];
+      var div = document.createElement("div");
+      div.className = "test pending";
+      div.id = "test_" + test.id;
+      div.textContent = test.name + " pending";
+      status.appendChild(div);
+    }
+  },
+  onRun: function(test) {
+    var div = document.getElementById("test_" + test.id);
+    div.textContent = test.name + " running";
+    div.className = "test in-progress";
+  },
+  onSkip: function(test) {
+    var div = document.getElementById("test_" + test.id);
+    div.textContent = test.name + " SKIPPED";
+    div.className = "test skipped";
+  },
+  onFinish: function(test) {
+    var div = document.getElementById("test_" + test.id);
+    div.textContent = test.name + " OK";
+    div.className = "test successful";
+  }
+};
+
+Tests.run(listener);
+</script>
+</html>