@qooxdoo/framework
Version:
The JS Framework for Coders
15 lines (13 loc) • 335 B
JavaScript
qx.Class.define("qx.test.performance.widget.WidgetWithSingle",
{
extend : qx.test.performance.widget.AbstractWidget,
members :
{
CREATE_ITERATIONS : 100,
RESIZE_ITERATIONS : 50,
DISPOSE_ITERATIONS : 100,
_createWidget : function() {
return new qx.ui.core.Widget().set({decorator: "window"});
}
}
});