diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-10 05:32:52 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-10 05:32:52 (GMT) |
commit | e321dacf11a6df175617deffe233586a65036c9b (patch) | |
tree | b6ff5635d3833e7fb87e0c8d0b5c7dcb95887c84 /tests/auto/declarative | |
parent | a1080b89abad16d3889211bae2b1f99891a7dbfe (diff) | |
download | Qt-e321dacf11a6df175617deffe233586a65036c9b.zip Qt-e321dacf11a6df175617deffe233586a65036c9b.tar.gz Qt-e321dacf11a6df175617deffe233586a65036c9b.tar.bz2 |
missed files
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/qmlgraphicswebview/data/basic.ico | bin | 0 -> 318 bytes | |||
-rw-r--r-- | tests/auto/declarative/qmlgraphicswebview/data/forward.html | 12 | ||||
-rw-r--r-- | tests/auto/declarative/qmlgraphicswebview/data/javaScript.html | 11 | ||||
-rw-r--r-- | tests/auto/declarative/qmlgraphicswebview/data/loadError.qml | 5 |
4 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlgraphicswebview/data/basic.ico b/tests/auto/declarative/qmlgraphicswebview/data/basic.ico Binary files differnew file mode 100644 index 0000000..8f3d05e --- /dev/null +++ b/tests/auto/declarative/qmlgraphicswebview/data/basic.ico diff --git a/tests/auto/declarative/qmlgraphicswebview/data/forward.html b/tests/auto/declarative/qmlgraphicswebview/data/forward.html new file mode 100644 index 0000000..030446a --- /dev/null +++ b/tests/auto/declarative/qmlgraphicswebview/data/forward.html @@ -0,0 +1,12 @@ +<html> +<head><title>Forward</title> +<link rel="icon" sizes="48x48" href="basic.png"> +</head> +<body leftmargin="0" marginwidth="0"> +<table width="123"> +<tbody> +<tr><td>This is more.</td></tr> +</tbody> +</table> +</body> +</html> diff --git a/tests/auto/declarative/qmlgraphicswebview/data/javaScript.html b/tests/auto/declarative/qmlgraphicswebview/data/javaScript.html new file mode 100644 index 0000000..35270bc --- /dev/null +++ b/tests/auto/declarative/qmlgraphicswebview/data/javaScript.html @@ -0,0 +1,11 @@ +<html> +<head><title>JavaScript</title> +<link rel="icon" sizes="48x48" href="basic.png"> +<script type="text/javascript"> +<!-- +window.onload = function(){ window.status = "status here"; } +// --> +</script> +</head> +<body> +This is a JS test. diff --git a/tests/auto/declarative/qmlgraphicswebview/data/loadError.qml b/tests/auto/declarative/qmlgraphicswebview/data/loadError.qml new file mode 100644 index 0000000..1460f30 --- /dev/null +++ b/tests/auto/declarative/qmlgraphicswebview/data/loadError.qml @@ -0,0 +1,5 @@ +import Qt 4.6 + +WebView { + url: "does-not-exist.html" +} |