aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmlhttprequest/data/getAllResponseHeaders_args.qml
blob: 84a0bf30151420a2c945622488d646c70dc5f6d9 (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.getAllResponseHeaders("Test-header");
                } catch (e) {
                    if (e.code == DOMException.SYNTAX_ERR)
                        exceptionThrown = true;
                }
            }
        }
    }
}