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