history-base.html revision 7d9f4a49ef5e163b5f38d09a20f72208ab859e65
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<script>
var Y = YUI({
allowRollup: false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
modules: {
'history-base-test': {
fullpath: 'history-base-test.js',
requires: ['history-base', 'test']
}
}
}).use('history-base-test', 'test-console', function (Y) {
new Y.Test.Console().render('#log');
Y.Test.Runner.setName('history-base');
});
</script>
</body>
</html>