Cross Reference: app.html
xref
: /
yui3
/
src
/
app
/
tests
/
app.html
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
app.html revision c4b1075c8e00edf2fc8a8109920542399cd292d3
1468
N/A
<!
DOCTYPE
html
>
1468
N/A
<
html
>
1468
N/A
<
head
>
1468
N/A
<
meta
charset=
"utf-8"
>
1468
N/A
<
title
>Test Page</
title
>
1468
N/A
</
head
>
1468
N/A
<
body
class=
"yui3-skin-sam"
>
1468
N/A
1468
N/A
<
div
id=
"log"
></
div
>
1468
N/A
<
div
id=
"test"
></
div
>
1468
N/A
1468
N/A
<
script
src=
"/
build
/
yui
/
yui.js
"
></
script
>
1468
N/A
<
script
>
1468
N/A
var Y = YUI({
1468
N/A
allowRollup: false,
1468
N/A
filter: (
window.location.search.match
(/[?&]filter=([^&]+)/) || [])[1] || 'min',
1468
N/A
modules: {
1468
N/A
'test-console': {
1468
N/A
fullpath : '/
common
/
tests
/
assets
/
test-console.js
',
1468
N/A
requires : ['console-filters'],
1468
N/A
skinnable: true
1468
N/A
},
1468
N/A
1468
N/A
'skin-sam-test-console': {
1468
N/A
fullpath: '/
common
/
tests
/
assets
/
test-console.css
',
1468
N/A
type : 'css'
1468
N/A
},
1468
N/A
1543
N/A
'app-test': {
1468
N/A
fullpath: '
app-test.js
',
1468
N/A
requires: ['model', 'model-list', 'router', 'view', 'test']
1468
N/A
}
1468
N/A
},
1543
N/A
useBrowserConsole: false
1468
N/A
}).use('app-test', 'test-console', function (Y) {
1468
N/A
Y.Test.Runner.run
();
1468
N/A
});
1468
N/A
</
script
>
1468
N/A
1468
N/A
</
body
>
1468
N/A
</
html
>
1468
N/A