aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickcanvasitem/data/tst_shadow.qml
blob: 4405ca6c0ee7a783089b9239074801a1152e982b (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
import QtQuick 2.0
import QtTest 1.0
import "testhelper.js" as Helper
Canvas {
   id:canvas; width:100;height:50; renderTarget: Canvas.Image
   TestCase {
       //TODO

       name: "shadow"; when: windowShown
       function test_basic() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
      }
       function test_blur() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }

       function test_clip() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }

       function test_composite() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }

       function test_enable() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }

       function test_gradient() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
       function test_image() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
       function test_offset() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
       function test_pattern() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
       function test_stroke() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
       function test_tranform() {
           var ctx = canvas.getContext('2d');
           ctx.reset();
       }
   }
}