qt6-bb10/qtdeclarative/tests/auto/qml/qqmlxmlhttprequest/data/getResponseHeader_args.qml

24 lines
553 B
QML

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;
}
}
}
}
}