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