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