<html>
<head>
<title>YUI: Node Perf</title>
</head>
<body>
<p>Create a Node instance, and append it to another Node instance.</p>
<div id="results"></div>
<script>
YUI({base: '/build/', filter:"raw"}).use('node', function(Y) {
var start, end,
n = 100,
body = Y.Node.get("body");
// console.profile("Base");
start = new Date().getTime();
for (i = 0; i < n; i++) {
}
end = new Date().getTime();
// console.profileEnd();
});
</script>
</body>
</html>