<!doctype html>
<html>
<head>
<title>cookie tests</title>
<script type="text/javascript" src="/build/yui/yui.js"></script>
</head>
<body class="yui3-skin-sam">
<h1>Cookie Tests</h1>
<div id="log"></div>
<script type="text/javascript">
YUI({
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
modules: {
'cookie-tests': {
fullpath: '/cookie-tests.js',
requires: [ 'cookie', 'test' ]
}
}
}).use('cookie-tests', 'test-console', function (Y) {
(new Y.Test.Console()).render('#log');
Y.Test.Runner.run();
});
</script>
</body>
</html>