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