~bac/juju-gui/trunkcopy

« back to all changes in this revision

Viewing changes to lib/yui/tests/event/tests/event-outside.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
 
    <title>outside Tests</title>
5
 
</head>
6
 
<body class="yui3-skin-sam">
7
 
 
8
 
<div id="log"></div>
9
 
 
10
 
<div id="tester"></div>
11
 
 
12
 
<script type="text/javascript" src="../../../build/yui/yui.js"></script>
13
 
<script>
14
 
YUI({
15
 
    filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
16
 
    modules: {
17
 
        'outside-tests': {
18
 
            fullpath: './outside-tests.js',
19
 
            requires: [ 'event-outside', 'node-event-simulate', 'test-console', 'test' ]
20
 
        }
21
 
    }
22
 
}).use('outside-tests', function(Y) {
23
 
    
24
 
    (new Y.Test.Console()).render('#log');
25
 
    Y.Test.Runner.setName('Event outside Test Suite');
26
 
    Y.Test.Runner.run();
27
 
    
28
 
});
29
 
</script>
30
 
</body>
31
 
</html>