*These tests run in a new debug window and your browser may prevent them from appearing.
Test Simple Prototype Function 1000x

var PrototypeObject = Class.create();
PrototypeObject.prototype = {
	initialize: function() {
		var a = 1;
		var b = "a short string";
		var c = new Date();
		var d = [];
		var e = {};
	}
};
		
Test Simple YUI Function 1000x

var YUIObject = function() {
	var a = 1;
	var b = "a short string";
	var c = new Date();
	var d = [];
	var e = {};
}();