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
|
<!--
Copyright 2012 Canonical Ltd. This software is licensed under the
GNU Affero General Public License version 3 (see the file LICENSE).
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Launchpad TESTLIBRARY</title>
<!-- YUI and test setup -->
<script type="text/javascript"
src="../../../../../canonical/launchpad/icing/yui/yui/yui.js">
</script>
<link rel="stylesheet" href="../../../../app/javascript/testing/test.css" />
<script type="text/javascript"
src="../../../../app/javascript/testing/testrunner.js"></script>
<!-- The module under test -->
<script type="text/javascript" src="../TESTLIBRARY.js"></script>
<!-- The test suite -->
<script type="text/javascript" src="test_TESTLIBRARY.js"></script>
</head>
<body class="yui-skin-sam">
<!-- The example markup required by the script to run -->
<div id="expected-id">
...
</div>
</body>
</html>
|