diff options
author | Martin Jones <martin.jones@nokia.com> | 2011-01-21 05:38:15 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2011-01-21 05:38:15 (GMT) |
commit | 7ddec9f3179bfd854ae53e23ab292de1f9a26377 (patch) | |
tree | d888aa7fc80c46e332d37e09aa2282451d2ad7a3 /tests/auto/declarative/qdeclarativeborderimage | |
parent | c3dd455b03a6c03011e2446f69fc262230e91639 (diff) | |
download | Qt-7ddec9f3179bfd854ae53e23ab292de1f9a26377.zip Qt-7ddec9f3179bfd854ae53e23ab292de1f9a26377.tar.gz Qt-7ddec9f3179bfd854ae53e23ab292de1f9a26377.tar.bz2 |
BorderImage fails for .sci source containing a URL
Task-number: QTBUG-16769
Reviewed-by: Bea Lam
Diffstat (limited to 'tests/auto/declarative/qdeclarativeborderimage')
-rw-r--r-- | tests/auto/declarative/qdeclarativeborderimage/data/colors-round-remote.sci | 7 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeborderimage/data/colors-round-remote.sci b/tests/auto/declarative/qdeclarativeborderimage/data/colors-round-remote.sci new file mode 100644 index 0000000..c673bed --- /dev/null +++ b/tests/auto/declarative/qdeclarativeborderimage/data/colors-round-remote.sci @@ -0,0 +1,7 @@ +border.left:10 +border.top:20 +border.right:30 +border.bottom:40 +horizontalTileRule:Round +verticalTileRule:Repeat +source:http://127.0.0.1:14446/colors.png diff --git a/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp b/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp index e6543e6..bc2f170 100644 --- a/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp +++ b/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp @@ -294,6 +294,7 @@ void tst_qdeclarativeborderimage::sciSource_data() QTest::newRow("local") << QUrl::fromLocalFile(SRCDIR "/data/colors-round.sci").toString() << true; QTest::newRow("local not found") << QUrl::fromLocalFile(SRCDIR "/data/no-such-file.sci").toString() << false; QTest::newRow("remote") << SERVER_ADDR "/colors-round.sci" << true; + QTest::newRow("remote image") << SERVER_ADDR "/colors-round-remote.sci" << true; QTest::newRow("remote not found") << SERVER_ADDR "/no-such-file.sci" << false; } |