diff options
Diffstat (limited to 'swat/apps/qooxdoo-examples/test/Image_4.html')
-rw-r--r-- | swat/apps/qooxdoo-examples/test/Image_4.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/swat/apps/qooxdoo-examples/test/Image_4.html b/swat/apps/qooxdoo-examples/test/Image_4.html new file mode 100644 index 0000000000..af7c64bff3 --- /dev/null +++ b/swat/apps/qooxdoo-examples/test/Image_4.html @@ -0,0 +1,39 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>qooxdoo » Demo</title> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/> + <!--[if IE]> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/> + <![endif]--> + <script type="text/javascript" src="../../script/qx.js"></script> +</head> +<body> + <script type="text/javascript" src="../../script/layout.js"></script> + + <div id="demoDescription"> + qx.ui.basic.Image Stress Test + </div> + + <script type="text/javascript"> + qx.core.Init.getInstance().defineMain(function() + { + var d = qx.ui.core.ClientDocument.getInstance(); + var w; + + for (var i=1; i<=10; i++) + { + for (var j=1; j<=10; j++) + { + var w = new qx.ui.basic.Image("icon/16/clock.png"); + + w.setLeft(20+(16*i)); + w.setTop(48+(16*j)); + + d.add(w); + }; + }; + }); + </script> +</body> +</html>
\ No newline at end of file |