lang.html revision aa37793651f52858384f57a8d744b734d9a30950
0N/A<!DOCTYPE html>
123N/A<html>
0N/A<head>
0N/A <meta charset="utf-8">
0N/A <title>Y.Lang tests</title>
0N/A</head>
123N/A<body class="yui3-skin-sam">
0N/A
123N/A<div id="log"></div>
0N/A<iframe name="xframe" id="xframe" src="assets/xframe.html" style="visibility: hidden;"></iframe>
0N/A
0N/A<script src="/build/yui/yui.js"></script>
0N/A<script>
0N/Avar Y = YUI({
0N/A allowRollup: false,
0N/A filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
0N/A modules: {
0N/A 'lang-test': {
0N/A fullpath: 'lang-test.js',
0N/A requires: ['test']
123N/A },
123N/A
123N/A 'test-console': {
0N/A fullpath : '/common/tests/assets/test-console.js',
0N/A requires : ['console-filters'],
87N/A skinnable: true
87N/A },
96N/A
87N/A 'skin-sam-test-console': {
0N/A fullpath: '/common/tests/assets/test-console.css',
0N/A type : 'css'
0N/A }
0N/A },
0N/A useBrowserConsole: false
87N/A}).use('lang-test', 'test-console', function (Y) {
0N/A Y.Test.Runner.run();
99N/A});
99N/A</script>
99N/A
99N/A</body>
0N/A</html>
69N/A