index.html revision 6eb4f00fb82f5c5c3ebdd92d4bf6f01484798539
2N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2N/A<html>
2N/A<head>
2N/A <title>Resize Tests</title>
2N/A <style>
2N/A #parent {
2N/A height: 500px;
2N/A width: 500px;
2N/A border: 1px solid black;
2N/A }
2N/A
2N/A #resize {
2N/A height: 100px;
2N/A width: 100px;
2N/A }
2N/A </style>
2N/A</head>
2N/A<body class="yui3-skin-sam">
2N/A<div id="log"></div>
2N/A
2790N/A<div id="resize">
2790N/A</div>
3739N/A
2N/A<script type="text/javascript" src="/build/yui/yui.js"></script>
2N/A<script type="text/javascript">
2N/A
2N/Avar YUI_config = {
2N/A gconfig: true,
2N/A gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
3817N/A};
2N/A
2N/A
2N/AYUI({
59N/A filter: YUI_config.gfilter,
59N/A modules: {
2N/A 'resize-tests': {
2N/A fullpath: '/resize-tests.js',
2N/A requires: ['resize', 'test']
2N/A }
26N/A }
26N/A}).use('resize-tests', 'test-console', function(Y) {
2N/A new Y.Test.Console().render('#log');
26N/A
1470N/A Y.Test.Runner.run();
38N/A});
1470N/A
1470N/A</script>
1470N/A</body>
181N/A</html>
26N/A