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

17 lines
317 B
QML

import QtQuick 2.0
QtObject {
property bool test: false
Component.onCompleted: {
var x = new XMLHttpRequest;
try {
x.getResponseHeader("Test-header");
} catch (e) {
if (e.code == DOMException.INVALID_STATE_ERR)
test = true;
}
}
}