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
32
33
34
35
36
37
38
39
40
|
<html>
<head>
<title>Launchpad PersonPicker</title>
<!-- YUI 3.0 Setup -->
<script type="text/javascript" src="../../../../canonical/launchpad/icing/yui/yui/yui.js"></script>
<script type="text/javascript"
src="../../../../canonical/launchpad/icing/lazr/build/lazr.js"></script>
<link rel="stylesheet"
href="../../../../canonical/launchpad/icing/yui/cssreset/reset.css"/>
<link rel="stylesheet"
href="../../../../canonical/launchpad/icing/yui/cssfonts/fonts.css"/>
<link rel="stylesheet"
href="../../../../canonical/launchpad/icing/yui/cssbase/base.css"/>
<link rel="stylesheet"
href="../../../../canonical/launchpad/javascript/test.css" />
<script type="text/javascript" src="../../../app/javascript/client.js"></script>
<script type="text/javascript" src="../../../app/javascript/lp.js"></script>
<!-- The module under test -->
<script type="text/javascript" src="../widgets.js"></script>
<!-- The test suite -->
<script type="text/javascript" src="test_personpicker.js"></script>
</head>
<body class="yui3-skin-sam">
<!-- The example markup required by the script to run -->
<input type="text" value="" id="choose"
name="choose" size="20"
maxlength=""
onKeyPress="" style=""
class="" />
<span class="">
(<a id="show-widget" href="/people/">Find…</a>)
</span>
<!-- The test output -->
<div id="log"></div>
</body>
</html>
|