diff options
Diffstat (limited to 'tests/auto/declarative/qmlxmlhttprequest/data/open_arg_count.2.qml')
-rw-r--r-- | tests/auto/declarative/qmlxmlhttprequest/data/open_arg_count.2.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlxmlhttprequest/data/open_arg_count.2.qml b/tests/auto/declarative/qmlxmlhttprequest/data/open_arg_count.2.qml new file mode 100644 index 0000000..8c86c20 --- /dev/null +++ b/tests/auto/declarative/qmlxmlhttprequest/data/open_arg_count.2.qml @@ -0,0 +1,18 @@ +import Qt 4.6 + +QtObject { + property bool exceptionThrown: false + + Component.onCompleted: { + var x = new XMLHttpRequest; + + try { + x.open("GET", "http://www.nokia.com", true, "user", "password", "extra"); + } catch (e) { + if (e.code == DOMException.SYNTAX_ERR) + exceptionThrown = true; + } + } +} + + |