index.html revision edc93c9cc1e86e5684132bf2ec631b8754217188
0N/A<!doctype html>
1472N/A<html>
0N/A<head>
0N/A <title>Gesture Event Tests</title>
0N/A</head>
0N/A<body class="yui3-skin-sam">
0N/A
0N/A<div id="log"></div>
0N/A
0N/A<div id="tester"></div>
0N/A
0N/A<script type="text/javascript" src="/build/yui/yui.js"></script>
0N/A<script>
0N/AYUI({
0N/A filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
0N/A modules: {
0N/A 'gesture-tests': {
0N/A fullpath: '/gesture-tests.js',
1472N/A requires: [ 'event-gestures', 'event-simulate', 'node-simulate', 'test-console', 'test' ]
1472N/A },
1472N/A 'flick-tests': {
0N/A fullpath: '/flick-tests.js',
0N/A requires: [ 'event-gestures', 'event-simulate', 'node-simulate', 'test-console', 'test' ]
0N/A }
0N/A }
0N/A}).use('gesture-tests', 'flick-tests', function(Y) {
0N/A
0N/A (new Y.Test.Console()).render('#log');
0N/A Y.Test.Runner.setName('Event Gestures Test Suite');
1879N/A Y.Test.Runner.run();
1879N/A
1879N/A});
1879N/A</script>
1879N/A</body>
1879N/A</html>
1879N/A