oop.html revision 5c1d9e043503606aacdf14c2a39d4fce211e7c64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>oop tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<div id="test"></div>
<script src="/build/yui/yui.js"></script>
<script>
var Y = YUI({
allowRollup: false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
modules: {
'oop-test': {
fullpath: 'oop-test.js',
requires: ['attribute', 'test']
},
'test-console': {
fullpath : '/common/tests/assets/test-console.js',
requires : ['console-filters'],
skinnable: true
},
'skin-sam-test-console': {
fullpath: '/common/tests/assets/test-console.css',
type : 'css'
}
},
useBrowserConsole: false
}).use('oop-test', 'test-console', function (Y) {
Y.Test.Runner.run();
});
</script>
</body>
</html>