diff options
author | James Lal <james@lightsofapollo.com> | 2012-06-27 19:28:37 +0200 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-06-27 19:28:37 +0200 |
commit | d76e26ac16c16ca30a9c177fa292f5cdf184955e (patch) | |
tree | fbc9e6df292440b689d1990911edd802e618df43 /test-agent/index.html | |
parent | 1c136b249274a3cad047e043693c6e643892b6a9 (diff) | |
download | jsCalDAV-d76e26ac16c16ca30a9c177fa292f5cdf184955e.tar.gz |
initial move to support web js
Diffstat (limited to 'test-agent/index.html')
-rw-r--r-- | test-agent/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test-agent/index.html b/test-agent/index.html new file mode 100644 index 0000000..b2e7bb5 --- /dev/null +++ b/test-agent/index.html @@ -0,0 +1,29 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + + <title>Serve the tests</title> + <link rel="stylesheet" href="../vendor/test-agent.css" type="text/css" charset="utf-8"> + <style type="text/css" media="all"> + body > iframe { + width: 100%; + height: 100%; + visibility: visible; + border: 1px solid white; + } + </style> +</head> +<body> + +<!-- Test Agent UI will be loaded in here --> +<div id="test-agent-ui"> +</div> + +<!-- Load the bare minimum to get the ui and runner working --> +<script src="../vendor/test-agent.js" type="text/javascript" charset="utf-8"></script> +<script src="./index.js" type="text/javascript" charset="utf-8"></script> + +</body> +</html> + |