Cross Reference: /yui3/src/yui/tests/array.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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Y.Array tests (core)</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<div id="tester" style="visibility: hidden;">
<span>test</span>
<span>test</span>
<span>test</span>
</div>
<script src="/build/yui/yui.js"></script>
<script>
var YUI_config = {
useNativeES5: (/[?&]useNativeES5=(?:0|false|no)(?:&|$)/i.test(window.location.search) ? false : true)
};
var Y = YUI({
allowRollup: false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
modules: {
'array-test': {
fullpath: 'array-test.js',
requires: ['test']
}
}
}).use('array-test', 'test-console', function (Y) {
new Y.Test.Console().render('#log');
Y.Test.Runner.run();
});
</script>
</body>
</html>