aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml72
1 files changed, 0 insertions, 72 deletions
diff --git a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml
deleted file mode 100644
index 988ff6416b..0000000000
--- a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml
+++ /dev/null
@@ -1,72 +0,0 @@
-import QtQuick 1.0
-import QtWebKit 1.0
-
-Grid {
- property string skip: "WebView tests not counting until resources allocated to WebView maintenance"
- columns: 3
- Rectangle {
- Text { color: "green"; text: "Normal" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- }
- }
- Rectangle {
- Text { color: "green"; text: "Big" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- settings.minimumFontSize: 20
- }
- }
- Rectangle {
- Text { color: "green"; text: "Big (logical)" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- settings.minimumLogicalFontSize: 20
- }
- }
- Rectangle {
- Text { color: "green"; text: "Bigger" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- settings.minimumFontSize: 30
- }
- }
- Rectangle {
- Text { color: "green"; text: "Small (except fixed)" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- settings.defaultFontSize: 8
- }
- }
- Rectangle {
- Text { color: "green"; text: "Small fixed" }
- border.color: "black"
- width: 200
- height: 200
- WebView {
- anchors.fill: parent
- url: "test.html"
- settings.defaultFixedFontSize: 8
- }
- }
-}