0N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
0N/A<html>
0N/A<head>
0N/A <meta http-equiv="content-type" content="text/html; charset=utf-8">
0N/A <title>Resize Manual Test</title>
0N/A <script src="/build/yui/yui-min.js"></script>
0N/A
0N/A <style>
0N/A #resize{
0N/A position: relative;
0N/A width:100px;
0N/A height:100px;
0N/A background-color:#abc;
0N/A }
0N/A </style>
0N/A
0N/A<body class="yui3-skin-sam">
0N/A <div id="resize">Resize me</div>
0N/A<script>
0N/AYUI({filter: 'raw'},{ skin: 'sam' }).use('resize', function(Y) {
0N/A var resize = new Y.Resize({
0N/A //Selector of the node to resize
0N/A node: '#resize'
0N/A });
0N/A});
0N/A</script>
0N/A</body>
0N/A</html>
0N/A