~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/javascript/tests/test_branchrevisionexpander.html

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-21 03:13:36 UTC
  • mfrom: (13302.8.27 bmp-inline-diffs)
  • Revision ID: launchpad@pqm.canonical.com-20110721031336-cterb0i4qytjsqzo
[r=danilo][bug=813349] Add inline diff expanders to revision
        summaries in merge proposal comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 
2
 
 
3
<html>
 
4
  <head>
 
5
  <title>Test page for branch revisionexpander JavaScript unit tests</title>
 
6
 
 
7
  <!-- YUI 3.0 Setup -->
 
8
  <script type="text/javascript" src="../../../../canonical/launchpad/icing/yui/yui/yui.js"></script>
 
9
  <script type="text/javascript" src="../../../../canonical/launchpad/icing/lazr/build/lazr.js"></script>
 
10
  <script type="text/javascript" src="../../../app/javascript/client.js"></script>
 
11
  <link rel="stylesheet" href="../../../../canonical/launchpad/icing/yui/cssreset/reset.css"/>
 
12
  <link rel="stylesheet" href="../../../../canonical/launchpad/icing/yui/cssfonts/fonts.css"/>
 
13
  <link rel="stylesheet" href="../../../../canonical/launchpad/icing/yui/cssbase/base.css"/>
 
14
  <link rel="stylesheet" href="../../../../canonical/launchpad/javascript/test.css" />
 
15
  <link rel="stylesheet" href="../../../../canonical/launchpad/icing/lazr/build/lazr-sam.css" />
 
16
 
 
17
  <!-- expected variable -->
 
18
  <script type="text/javascript">
 
19
    var LP = {
 
20
        cache: {},
 
21
        links: {}
 
22
    };
 
23
  </script>
 
24
 
 
25
  <!-- The module under test -->
 
26
  <script type="text/javascript" src="../branch.revisionexpander.js"></script>
 
27
 
 
28
  <!-- The test suite -->
 
29
  <script type="text/javascript" src="test_branchrevisionexpander.js"></script>
 
30
  </head>
 
31
 
 
32
<body class="yui3-skin-sam">
 
33
</body>
 
34
</html>
 
35