~bcsaller/juju-gui/update-reductions

« back to all changes in this revision

Viewing changes to lib/yui/tests/event/tests/event-mouseenter.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>mouseenter 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
 
        'mouseenter-tests': {
18
 
            fullpath: './mouseenter-tests.js',
19
 
            requires: [ 'event-mouseenter', 'test-console', 'test' ]
20
 
        }
21
 
    }
22
 
}).use('mouseenter-tests', function(Y) {
23
 
    
24
 
    (new Y.Test.Console()).render('#log');
25
 
    Y.Test.Runner.setName('Event mouseenter Test Suite');
26
 
    Y.Test.Runner.run();
27
 
    
28
 
});
29
 
</script>
30
 
</body>
31
 
</html>