Cross Reference: /yui3/src/collection/tests/arraylist.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
<!doctype html>
<html>
<head>
<title>Test Page</title>
<link type="text/css" rel="stylesheet" href="assets/test.css">
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<script src="/build/yui/yui.js"></script>
<script src="arraylist-tests.js"></script>
<script>
YUI({
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
useBrowserConsole: false,
allowRollup: false
}).use('test-console', 'arraylist-tests', function (Y) {
new Y.Test.Console().render('#log');
Y.Test.Runner.run();
});
</script>
</body>
</html>