aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml62
1 files changed, 0 insertions, 62 deletions
diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml
deleted file mode 100644
index 1cd0c7b50e..0000000000
--- a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml
+++ /dev/null
@@ -1,62 +0,0 @@
-import QtQuick 1.0
-import QtWebKit 1.0
-
-// The WebView size is determined by the width, height,
-// preferredWidth, and preferredHeight properties.
-Rectangle {
- property string skip: "WebView tests not counting until resources allocated to WebView maintenance"
- id: rect
- color: "white"
- width: 200
- height: layout.height
- Column {
- id: layout
- spacing: 2
- WebView {
- html: "No width defined."
- Rectangle { color: "#10000000"
- anchors.fill: parent
- }
- }
- WebView {
- width: rect.width
- html: "The width is full."
- Rectangle {
- color: "#10000000"
- anchors.fill: parent
- }
- }
- WebView {
- width: rect.width/2
- html: "The width is half."
- Rectangle {
- color: "#10000000"
- anchors.fill: parent
- }
- }
- WebView {
- preferredWidth: rect.width/2
- html: "The preferredWidth is half."
- Rectangle {
- color: "#10000000"
- anchors.fill: parent
- }
- }
- WebView {
- preferredWidth: rect.width/2
- html: "The_preferredWidth_is_half."
- Rectangle {
- color: "#10000000"
- anchors.fill: parent
- }
- }
- WebView {
- width: rect.width/2
- html: "The_width_is_half."
- Rectangle {
- color: "#10000000"
- anchors.fill: parent
- }
- }
- }
-}