index.html revision 36a12c876bd2c62f9fc142989f37118f93efb8a3
0N/A<!doctype html>
2362N/A<html>
0N/A<head>
0N/A <title>Gesture Event Tests</title>
0N/A</head>
0N/A<body class="yui3-skin-sam">
2362N/A
0N/A<div id="log"></div>
2362N/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',
0N/A requires: [ 'event-gestures', 'event-simulate', 'node-simulate', 'test-console', 'test' ]
0N/A },
2362N/A 'flick-tests': {
2362N/A fullpath: '/flick-tests.js',
2362N/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
0N/A Y.Test.Runner.run();
0N/A
0N/A});
0N/A</script>
0N/A</body>
0N/A</html>
0N/A