<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- These link tags are required for the css-stamp tests DO NOT REMOVE -->
<link type="text/css" rel="stylesheet" href="/build/cssgrids/cssgrids.css">
<link type="text/css" rel="stylesheet" href="/build/widget-base/assets/skins/sam/widget-base.css">
<link type="text/css" rel="stylesheet" href="/build/dial/assets/skins/sam/dial.css">
<title>Loader Automated Tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<!-- This is the full test file, notice it's using the `yui` seed file, so loader is NOT fetched. -->
<script type="text/javascript" src="/build/yui/yui.js"></script>
<script type="text/javascript">
var YUI_config = {
loaderPath: 'loader/loader.js',
gconfig: true,
gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
};
YUI({
allowRollup: false,
logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, event: true, widget: true },
filter: YUI_config.gfilter,
modules: {
'loader-tests': {
fullpath: '/loader-tests.js',
requires: [ 'test']
}
}
}).use('loader-tests', 'test-console', 'test', function(Y) {
new Y.Test.Console().render('#log');
//This is a YUITest hack to rename this test for reporting
Y.Test.Runner.setName('Loader Main Seed Test Suite (full)');
Y.Test.Runner.run();
});
</script>
</body>
</html>