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