aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml')
-rw-r--r--tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml59
1 files changed, 0 insertions, 59 deletions
diff --git a/tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml b/tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml
deleted file mode 100644
index 4405ca6c0e..0000000000
--- a/tests/auto/declarative/qquickcanvasitem/data/tst_shadow.qml
+++ /dev/null
@@ -1,59 +0,0 @@
-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();
- }
- }
-}