<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>YUI Throttle Tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<script type="text/javascript" src="/build/yui-base/yui-base.js"></script>
<script type="text/javascript">
var YUI_config = {
loaderPath: 'loader/loader.js',
gconfig: true,
gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
};
YUI({
filter: YUI_config.gfilter,
modules: {
'throttle-tests': {
fullpath: '/throttle-tests.js',
requires: [ 'yui-throttle', 'test']
}
}
}).use('throttle-tests', 'test-console', function(Y) {
new Y.Test.Console().render('#log');
Y.Test.Runner.run();
});
</script>
</body>
</html>