r20445: add README file indicating that the swat directory is no longer relevant
[kai/samba.git] / swat / apps / qooxdoo-examples / test / Image_4.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4   <title>qooxdoo &raquo; Demo</title>
5   <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
6   <!--[if IE]>
7   <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
8   <![endif]-->
9   <script type="text/javascript" src="../../script/qx.js"></script>
10 </head>
11 <body>
12   <script type="text/javascript" src="../../script/layout.js"></script>
13
14   <div id="demoDescription">
15     qx.ui.basic.Image Stress Test
16   </div>
17
18   <script type="text/javascript">
19   qx.core.Init.getInstance().defineMain(function()
20   {
21     var d = qx.ui.core.ClientDocument.getInstance();
22     var w;
23
24     for (var i=1; i<=10; i++)
25     {
26       for (var j=1; j<=10; j++)
27       {
28         var w = new qx.ui.basic.Image("icon/16/clock.png");
29
30         w.setLeft(20+(16*i));
31         w.setTop(48+(16*j));
32
33         d.add(w);
34       };
35     };
36   });
37   </script>
38 </body>
39 </html>