summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/Leak_1.html
blob: 86612dc58444e0f31ab5ba8151ddf482429625c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>qooxdoo &raquo; 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">
    <p>Leak-Test</p>
  </div>

  <script type="text/javascript">
  qx.core.Init.getInstance().defineMain(function()
  {
    // Does not leak
    // *****

    // var i1 = new qx.io.image.Preloader(qx.manager.object.ImageManager.buildUri("icon/48/hardwareinfo.png"));


    // Leaks: +2MB
    // *****

    var w1 = new qx.ui.basic.Terminator;
    qx.ui.core.ClientDocument.getInstance().add(w1);





    // Does not leak
    // *****
    /*
    var w1 = new qx.ui.basic.Terminator;
    w1.setTop(48);
    w1.setLeft(20);
    qx.ui.core.ClientDocument.getInstance().add(w1);
    */


    // Leaks +2MB
    // *****
    /*
    var i1 = new qx.ui.basic.Image("icon/48/hardwareinfo.png");
    with(i1)
    {
      setTop(48);
      setLeft(20);
    };

    qx.ui.core.ClientDocument.getInstance().add(i1);
    */






    //var t1 = new QxTarget;


  });
  </script>
</body>
</html>