index-loader.html revision e157e439a6af405b40e7db30e1b7ffbabebeb2a2
70N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
70N/A<html>
70N/A<head>
70N/A<title>YUI Seed Tests</title>
371N/A</head>
70N/A<body class="yui3-skin-sam">
70N/A
70N/A<div id="log"></div>
70N/A
70N/A<!-- This is the loader test file, notice it's using the `yui-base` seed file & including loader so it is NOT fetched. -->
70N/A<script type="text/javascript" src="/build/yui-base/yui-base.js"></script>
70N/A<script type="text/javascript" src="/build/loader/loader.js"></script>
70N/A<script type="text/javascript">
70N/A
70N/AYUI.GlobalConfig = {
70N/A modules: {
70N/A 'global-mod': {
70N/A fullpath: '/assets/globalmod.js'
70N/A }
70N/A }
70N/A};
70N/A
70N/Avar YUI_config = {
70N/A loaderPath: 'loader/loader.js',
70N/A gconfig: true,
70N/A gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
70N/A};
70N/A
70N/A
70N/AYUI({
70N/A allowRollup: false,
70N/A logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, event: true, widget: true },
371N/A filter: YUI_config.gfilter,
70N/A modules: {
70N/A 'seed-tests': {
70N/A fullpath: '/seed-tests.js',
70N/A requires: [ 'test']
70N/A },
70N/A 'core-tests': {
371N/A fullpath: '/core-tests.js',
70N/A requires: [ 'classnamemanager']
70N/A },
371N/A
70N/A 'config-test': {
70N/A fullpath: 'config-test.js'
70N/A },
70N/A
70N/A 'later-test': {
70N/A fullpath: 'later-test.js'
70N/A },
70N/A
70N/A 'namespace-test': {
70N/A fullpath: 'namespace-test.js'
70N/A }
70N/A
70N/A }
70N/A}).use('seed-tests', 'core-tests', 'config-test', 'later-test', 'namespace-test', 'test-console', 'test', function(Y) {
70N/A new Y.Test.Console().render('#log');
70N/A
192N/A //This is a YUITest hack to rename this test for reporting
192N/A Y.Test.Runner.setName('YUI Seed Static Loader Test Suite');
192N/A Y.Test.Runner.run();
70N/A});
</script>
</body>
</html>