~bac/juju-gui/trunkcopy

« back to all changes in this revision

Viewing changes to lib/yui/tests/autocomplete/tests/functional/autocomplete.html

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html>
3
 
<head>
4
 
    <meta charset="utf-8">
5
 
    <title>Test Page</title>
6
 
</head>
7
 
<body class="yui3-skin-sam">
8
 
 
9
 
<div id="log"></div>
10
 
 
11
 
<script src="../../../../build/yui/yui.js"></script>
12
 
<script>
13
 
var Y = YUI({
14
 
    allowRollup: false,
15
 
    filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
16
 
    modules: {
17
 
        'autocomplete-test': {
18
 
            fullpath: 'autocomplete-test.js',
19
 
            requires: [
20
 
                'autocomplete', 'autocomplete-filters',
21
 
                'autocomplete-filters-accentfold', 'autocomplete-highlighters',
22
 
                'autocomplete-highlighters-accentfold', 'autocomplete-test-data',
23
 
                'datasource-local', 'node', 'node-event-simulate', 'jsonp', 'test', 'yql'
24
 
            ]
25
 
        },
26
 
 
27
 
        'autocomplete-test-data': {
28
 
            fullpath: 'autocomplete-test-data.js'
29
 
        }
30
 
    }
31
 
}).use('autocomplete-test', 'test-console', function (Y) {
32
 
    new Y.Test.Console().render('#log');
33
 
    Y.Test.Runner.run();
34
 
});
35
 
</script>
36
 
 
37
 
</body>
38
 
</html>