~ubuntu-branches/ubuntu/precise/whoopsie-daisy/precise-proposed

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/tests/event-gestures/tests/index.html

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-04-18 13:04:36 UTC
  • Revision ID: package-import@ubuntu.com-20120418130436-vmt93p8fds516lws
Tags: 0.1.32
Fix failing tests on powerpc and ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
<head>
 
4
    <title>Gesture Event 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
        'gesture-tests': {
 
18
            fullpath: './gesture-tests.js',
 
19
            requires: [ 'event-gestures', 'event-simulate', 'test-console', 'test' ]
 
20
        },
 
21
        'flick-tests': {
 
22
            fullpath: './flick-tests.js',
 
23
            requires: [ 'event-gestures', 'event-simulate', 'test-console', 'test' ]
 
24
        }
 
25
    }
 
26
}).use('gesture-tests', 'flick-tests', function(Y) {
 
27
    
 
28
    (new Y.Test.Console()).render('#log');
 
29
    Y.Test.Runner.setName('Event Gestures Test Suite');
 
30
    Y.Test.Runner.run();
 
31
    
 
32
});
 
33
</script>
 
34
</body>
 
35
</html>