aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmlhttprequest/data/open_sync.qml
blob: 0f31c966faf4049dbec67350141a15d72489b017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

QtObject {
    property bool exceptionThrown: false

    Component.onCompleted: {
        var x = new XMLHttpRequest;

        try {
            x.open("GET", "http://www.qt-project.org", false);
        } catch (e) {
            if (e.code == DOMException.NOT_SUPPORTED_ERR)
                exceptionThrown = true;
        }
    }
}