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