~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/tests/test_confirmationoverlay.html

  • Committer: Raphael Badin
  • Date: 2011-08-30 13:22:03 UTC
  • mto: This revision was merged to the branch mainline in revision 13829.
  • Revision ID: raphael.badin@canonical.com-20110830132203-0gd059qxb6upxk6n
Fix style as per MP's 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
<html>
 
3
  <head>
 
4
  <title>Confirmation Overlay</title>
 
5
 
 
6
  <!-- YUI and test setup -->
 
7
  <script type="text/javascript"
 
8
          src="../../../../canonical/launchpad/icing/yui/yui/yui.js">
 
9
  </script>
 
10
  <link rel="stylesheet" href="../../../app/javascript/testing/test.css" />
 
11
  <script type="text/javascript"
 
12
          src="../../../app/javascript/testing/testrunner.js"></script>
 
13
 
 
14
  <!-- dependent modules from lazr-->
 
15
  <script type="text/javascript" src="../lazr/lazr.js"></script>
 
16
  <script type="text/javascript" src="../overlay/overlay.js"></script>
 
17
  <script type="text/javascript" src="../formoverlay/formoverlay.js"></script>
 
18
 
 
19
  <!-- The module under test -->
 
20
  <script type="text/javascript" src="../confirmationoverlay.js"></script>
 
21
 
 
22
  <!-- The test suite -->
 
23
  <script type="text/javascript" src="test_confirmationoverlay.js"></script>
 
24
 
 
25
</head>
 
26
<body class="yui3-skin-sam">
 
27
  <script type="text/x-template" id="form-template">
 
28
    <span id="test">content</span>
 
29
    <form name="my-form">
 
30
      <input type="checkbox" name="checkbox" value="checkbox" />
 
31
      <input id="submit" type="submit" name="submit_name" value="submit_value"/>
 
32
    </form>
 
33
  </script>
 
34
 
 
35
</body>
 
36
</html>