~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/inlinehelp/tests/test_inlinehelp.html

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 17:11:54 UTC
  • mfrom: (14565.3.17 inline_help_907443)
  • Revision ID: launchpad@pqm.canonical.com-20120106171154-fjgapb91cd49zzih
[r=deryck][bug=907443] Port the inlinehelp javascript from mochikit
        to YUI in lp.app.inlinehelp.

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>Test InlineHelp </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
    <script type="text/javascript" src="../../overlay/overlay.js"></script>
 
18
 
 
19
    <!-- The module under test -->
 
20
    <script type="text/javascript" src="../inlinehelp.js"></script>
 
21
 
 
22
    <!-- The test suite -->
 
23
    <script type="text/javascript" src="test_inlinehelp.js"></script>
 
24
  </head>
 
25
  <body class="yui3-skin-sam">
 
26
      <ul id="suites">
 
27
          <li>lp.app.inlinehelp.test</li>
 
28
      </ul>
 
29
  </body>
 
30
</html>
 
31