~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to standard_test_template.html

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-12 10:03:49 UTC
  • mfrom: (13885.3.7 show-comment-form)
  • Revision ID: launchpad@pqm.canonical.com-20110912100349-3ergu5d3nnhkj859
[r=abentley][bug=838825] Once all comments have been loaded
        asynchronously, the comment form will now appear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
Copyright 2011 Canonical Ltd.  This software is licensed under the
 
3
GNU Affero General Public License version 3 (see the file LICENSE).
 
4
-->
 
5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 
6
<html>
 
7
  <head>
 
8
    <title>Launchpad TESTLIBRARY</title>
 
9
    <!-- YUI and test setup -->
 
10
    <script type="text/javascript"
 
11
            src="../../../../../canonical/launchpad/icing/yui/yui/yui.js">
 
12
    </script>
 
13
    <link rel="stylesheet" href="../../../../app/javascript/testing/test.css" />
 
14
    <script type="text/javascript"
 
15
            src="../../../../app/javascript/testing/testrunner.js"></script>
 
16
 
 
17
    <!-- The module under test -->
 
18
    <script type="text/javascript" src="../TESTLIBRARY.js"></script>
 
19
 
 
20
    <!-- The test suite -->
 
21
    <script type="text/javascript" src="test_TESTLIBRARY.js"></script>
 
22
  </head>
 
23
  <body class="yui-skin-sam">
 
24
 
 
25
    <!-- The example markup required by the script to run -->
 
26
    <div id="expected-id">
 
27
      ...
 
28
    </div>
 
29
  </body>
 
30
</html>
 
31