forked from tdd/pragmatic-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testbench.html
40 lines (36 loc) · 1.6 KB
/
testbench.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Pocket JavaScript test bench - All libraries in!</title>
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<!--
<script type="text/javascript" src="mootools-1.2.3-core-yc.js"></script>
-->
<script type="text/javascript" src="yui-min.js"></script>
<script type="text/javascript" src="dojo.js"></script>
<script type="text/javascript" src="ext-base.js"></script>
<script type="text/javascript" src="ext-all.js"></script>
</head>
<body>
<h1>Library docs</h1>
<ul>
<li><a href="http://api.prototypejs.org/" target="_new">Prototype 1.6.1</a></li>
<li><a href="http://docs.jquery.com/Main_Page" target="_new">jQuery 1.3.2</a></li>
<li><a href="http://mootools.net/docs/core" target="_new">MooTools 1.2.3</a></li>
<li><a href="http://developer.yahoo.com/yui/3/api/module_yui.html" target="_new">YUI 3.0 Core</a></li>
<li><a href="http://api.dojotoolkit.org/" target="_new">Dojo 1.3.2</a></li>
<li><a href="http://www.extjs.com/deploy/dev/docs/" target="_new">Ext 3.0.0</a></li>
</ul>
<h1>Your tests here…</h1>
<div id="container">
<h2 id="h21" class="category"><a href="#">Foo 1</a></h2>
<h2 class="category"><a href="#">Foo 2</a></h2>
<h2 class="category"><a href="#">Foo 3</a></h2>
</div>
<h2 class="category"><a href="#">Foo 4</a></h2>
</body>
</html>