aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmlhttprequest/data/getResponseHeader_args.qml
blob: dccc71dfc3656fe5d59e2893f4157924dc5b6d7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.0

QtObject {
    property bool exceptionThrown: false

    Component.onCompleted: {
        var x = new XMLHttpRequest;

        x.open("GET", "testdocument.html");
        x.send();

        x.onreadystatechange = function() {
            if (x.readyState == XMLHttpRequest.DONE) {
                try {
                    x.getResponseHeader();
                } catch (e) {
                    if (e.code == DOMException.SYNTAX_ERR)
                        exceptionThrown = true;
                }
            }
        }
    }
}